Merge branch 'master' of gitlab.libraryofcode.org:engineering/cloudservices-rewrite
commit
020d530451
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue