myt/lib/command.js

17 lines
255 B
JavaScript
Raw Normal View History

/**
2022-12-21 13:17:50 +00:00
* Base class for Myt commands.
*/
2022-12-21 13:17:50 +00:00
module.exports = class MytCommand {
get usage() {
return {};
}
get localOpts() {
return {};
}
2022-12-21 13:17:50 +00:00
async run(myt, opts) {
throw new Error('run command not defined');
}
}