Added createcrt command
parent
2152c988bf
commit
af136b1b6e
|
@ -5,6 +5,7 @@ import Build from './securesign_build';
|
||||||
import Init from './securesign_init';
|
import Init from './securesign_init';
|
||||||
import Account from './securesign_account';
|
import Account from './securesign_account';
|
||||||
import ActivateKey from './securesign_activatekey';
|
import ActivateKey from './securesign_activatekey';
|
||||||
|
import CreateCrt from './securesign_createcrt';
|
||||||
|
|
||||||
export default class SecureSign extends Command {
|
export default class SecureSign extends Command {
|
||||||
constructor(client: Client) {
|
constructor(client: Client) {
|
||||||
|
@ -13,7 +14,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, Account, ActivateKey];
|
this.subcmds = [Build, Init, Account, ActivateKey, CreateCrt];
|
||||||
this.enabled = true;
|
this.enabled = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue