2022-12-21 12:34:17 +00:00
|
|
|
/**
|
2022-12-21 13:17:50 +00:00
|
|
|
* Base class for Myt commands.
|
2022-12-21 12:34:17 +00:00
|
|
|
*/
|
2022-12-21 13:17:50 +00:00
|
|
|
module.exports = class MytCommand {
|
2022-12-29 09:15:02 +00:00
|
|
|
constructor(myt, opts) {
|
|
|
|
this.myt = myt;
|
|
|
|
this.opts = opts;
|
2022-12-21 12:34:17 +00:00
|
|
|
}
|
|
|
|
|
2022-12-21 13:17:50 +00:00
|
|
|
async run(myt, opts) {
|
2022-12-21 12:34:17 +00:00
|
|
|
throw new Error('run command not defined');
|
|
|
|
}
|
|
|
|
}
|