Merge branch 'master' of gitlab.libraryofcode.org:engineering/cloudservices-rewrite

merge-requests/1/merge
Matthew 2019-11-16 20:38:20 -05:00
commit 020d530451
No known key found for this signature in database
GPG Key ID: 766BE43AE75F7559
1 changed files with 2 additions and 1 deletions

View File

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