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-21 12:34:17 +00:00
|
|
|
get usage() {
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
get localOpts() {
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
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');
|
|
|
|
}
|
|
|
|
}
|