From af136b1b6e0db686b0e0155bd0839c6cd26b42fb Mon Sep 17 00:00:00 2001 From: Bsian Date: Tue, 19 Nov 2019 15:45:22 +0000 Subject: [PATCH] Added createcrt command --- src/commands/securesign.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/commands/securesign.ts b/src/commands/securesign.ts index 275b6fe..4f184a5 100644 --- a/src/commands/securesign.ts +++ b/src/commands/securesign.ts @@ -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; }