From b3370954b680e08ac700ef72b7bdeb31d6dd558e Mon Sep 17 00:00:00 2001 From: Bsian Date: Sun, 17 Nov 2019 01:38:05 +0000 Subject: [PATCH] Registered subcommand --- 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 df4ae28..f143b95 100644 --- a/src/commands/securesign.ts +++ b/src/commands/securesign.ts @@ -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; }