'use strict'; const path = require('path'); const Command = require('../../..'); class MainCommand extends Command { constructor(rawArgv) { super(rawArgv); this.usage = 'Usage: my-git [options]'; // load sub command this.load(path.join(__dirname, 'command')); } } module.exports = MainCommand;