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