src/lib/commands/init/index.js
import { getOptions } from './options';
import help from './help';
import runInstaller from './run-installer';
/**
* mongoose-data-seed init command
* @param {stringp[]} argv cli arguments
* @return {Promise}
*/
export default async argv => {
const { helpWanted, ...options } = getOptions(argv);
if (helpWanted) return help();
return runInstaller(options);
};