aboutsummaryrefslogtreecommitdiff
path: root/src/cli.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/cli.zig')
-rw-r--r--src/cli.zig7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/cli.zig b/src/cli.zig
index 2e4f900b5..f9c3f403f 100644
--- a/src/cli.zig
+++ b/src/cli.zig
@@ -1062,7 +1062,6 @@ pub const Command = struct {
// _ = CreateCommand;
_ = CreateListExamplesCommand;
// _ = DevCommand;
- _ = DiscordCommand;
// _ = InstallCommand;
// _ = LinkCommand;
// _ = UnlinkCommand;
@@ -1079,9 +1078,9 @@ pub const Command = struct {
const tag = which();
switch (tag) {
- // .DiscordCommand => return try DiscordCommand.exec(allocator),
- // .HelpCommand => return try HelpCommand.exec(allocator),
- // .InitCommand => return try InitCommand.exec(allocator, std.os.argv),
+ .DiscordCommand => return try DiscordCommand.exec(allocator),
+ .HelpCommand => return try HelpCommand.exec(allocator),
+ .InitCommand => return try InitCommand.exec(allocator, std.os.argv),
else => {},
}