aboutsummaryrefslogtreecommitdiff
path: root/src/cli/dev_command.zig
blob: 6587309b6e4160d2aed1ce25d90858afbb78cdfa (plain) (blame)
1
2
3
4
5
6
7
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);
    }
};