alright thats the rename

Former-commit-id: 0faf61249e76382dfb1aa8721249474eae920753
This commit is contained in:
Jarred Sumner
2021-08-17 01:44:30 -07:00
parent 209391d01c
commit 574be79253
43 changed files with 2378 additions and 1941 deletions

8
src/cli/dev_command.zig Normal file
View File

@@ -0,0 +1,8 @@
const Server = @import("../http.zig").Server;
const Command = @import("../cli.zig").Command;
pub const DevCommand = struct {
pub fn exec(ctx: Command.Context) !void {
try Server.start(ctx.allocator, ctx.args);
}
};