1
0
Fork 0

Added createcrt command

refactor/models
Bsian 2019-11-19 15:45:22 +00:00
parent 2152c988bf
commit af136b1b6e
No known key found for this signature in database
GPG Key ID: 097FB9A291026091
1 changed files with 2 additions and 1 deletions

View File

@ -5,6 +5,7 @@ import Build from './securesign_build';
import Init from './securesign_init';
import Account from './securesign_account';
import ActivateKey from './securesign_activatekey';
import CreateCrt from './securesign_createcrt';
export default class SecureSign extends Command {
constructor(client: Client) {
@ -13,7 +14,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, Account, ActivateKey];
this.subcmds = [Build, Init, Account, ActivateKey, CreateCrt];
this.enabled = true;
}