myt/lib/command.js

14 lines
249 B
JavaScript

/**
* Base class for Myt commands.
*/
module.exports = class MytCommand {
constructor(myt, opts) {
this.myt = myt;
this.opts = opts;
}
async run(myt, opts) {
throw new Error('run command not defined');
}
}