class BaseCommand { usage() { throw new Error('Usage not defined'); } description() { throw new Error('Description not defined'); } async action(args) { throw new Error('Action not defined'); } aliases() { return []; } autocomplete() { return null; } options() { return []; } hidden() { return false; } enabled() { return true; } async cancel() {} name() { let r = this.usage().split(' '); return r[0]; } metadata() { return { name: this.name(), usage: this.usage(), options: this.options(), hidden: this.hidden(), }; } } export { BaseCommand };