aboutsummaryrefslogtreecommitdiff
path: root/src/cli/dev_command.zig
blob: 91dee1bbcbba86309861af98a8087332ada75397 (plain) (blame)
1
2
3
4
5
6
7
8
9
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, @TypeOf(ctx.debug), ctx.debug);

    }
};