diff --git a/src/commands/systemd.ts b/src/commands/systemd.ts index a157518..6adf97c 100644 --- a/src/commands/systemd.ts +++ b/src/commands/systemd.ts @@ -1,6 +1,7 @@ import { Message } from 'eris'; import { Client, Command } from '../class'; import SystemD_Linger from './systemd_linger'; +import SystemD_Status from './systemd_status'; export default class SystemD extends Command { constructor(client: Client) { @@ -8,7 +9,7 @@ export default class SystemD extends Command { this.name = 'systemd'; this.description = 'Manages various aspects for your user SystemD.'; 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; }