myt/lib/command.js

17 lines
258 B
JavaScript

/**
* Base class for MyVC commands.
*/
module.exports = class MyVCCommand {
get usage() {
return {};
}
get localOpts() {
return {};
}
async run(myvc, opts) {
throw new Error('run command not defined');
}
}