forked from engineering/cloudservices
bind subcmd
parent
20ce572fef
commit
dfa6e6e642
|
@ -1,6 +1,7 @@
|
||||||
import { Message } from 'eris';
|
import { Message } from 'eris';
|
||||||
import { Client, Command } from '../class';
|
import { Client, Command } from '../class';
|
||||||
import SystemD_Linger from './systemd_linger';
|
import SystemD_Linger from './systemd_linger';
|
||||||
|
import SystemD_Status from './systemd_status';
|
||||||
|
|
||||||
export default class SystemD extends Command {
|
export default class SystemD extends Command {
|
||||||
constructor(client: Client) {
|
constructor(client: Client) {
|
||||||
|
@ -8,7 +9,7 @@ export default class SystemD extends Command {
|
||||||
this.name = 'systemd';
|
this.name = 'systemd';
|
||||||
this.description = 'Manages various aspects for your user SystemD.';
|
this.description = 'Manages various aspects for your user SystemD.';
|
||||||
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.subcmds = [SystemD_Linger];
|
this.subcmds = [SystemD_Linger, SystemD_Status];
|
||||||
this.enabled = true;
|
this.enabled = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue