Registered subcommand

merge-requests/1/merge
Bsian 2019-11-17 01:38:05 +00:00
parent 8c35748aee
commit b3370954b6
No known key found for this signature in database
GPG Key ID: 097FB9A291026091
1 changed files with 2 additions and 1 deletions

View File

@ -3,6 +3,7 @@ import { Command } from '../class';
import { Client } from '..';
import Build from './securesign_build';
import Init from './securesign_init';
import Account from './securesign_account';
export default class SecureSign extends Command {
constructor(client: Client) {
@ -11,7 +12,7 @@ export default class SecureSign extends Command {
this.description = 'Runs SecureSign CLI commands';
this.usage = `Run ${this.client.config.prefix}${this.name} [subcommand] for usage information`;
this.aliases = ['ss'];
this.subcmds = [Build, Init];
this.subcmds = [Build, Init, Account];
this.enabled = true;
}