From dfa6e6e642818b2964f73d2e4c1fe689ee11e465 Mon Sep 17 00:00:00 2001 From: Matthew R Date: Wed, 1 Jul 2020 00:50:26 -0400 Subject: [PATCH] bind subcmd --- src/commands/systemd.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; }