myt/lib/command.js

14 lines
249 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 {
constructor(myt, opts) {
this.myt = myt;
this.opts = opts;
}
2022-12-21 13:17:50 +00:00
async run(myt, opts) {
throw new Error('run command not defined');
}
}