From 4bfee04aa26e0cd6aa0016337e2b732a43d3d602 Mon Sep 17 00:00:00 2001 From: Matthew R Date: Wed, 1 Jul 2020 01:27:57 -0400 Subject: [PATCH] bind subcmds --- src/commands/systemd.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/systemd.ts b/src/commands/systemd.ts index 65015f7..5aae99a 100644 --- a/src/commands/systemd.ts +++ b/src/commands/systemd.ts @@ -12,7 +12,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, SystemD_Status]; + this.subcmds = [SystemD_Linger, SystemD_Status, SystemD_Start, SystemD_Restart, SystemD_Stop]; this.enabled = true; }