Display help when there is no subcommand

This commit is contained in:
2026-01-05 13:47:09 -05:00
parent e50d53ee7e
commit 80d14f7303

View File

@@ -69,5 +69,10 @@ pub fn main() !void {
try @import("./server/main.zig").main(gpa, info);
return;
} else if (matches.subcommandMatches("pub")) |_| {
std.debug.print("Unimplemented\n", .{});
return;
}
try app.displayHelp(io);
}