aboutsummaryrefslogtreecommitdiff
path: root/src/http/root.zig
blob: a1cc95c83fa81afde1de1c6c6412a2dfbde4b46e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//! All HTTP specific abstractions belong here.

const std = @import("std");

pub const serve = @import("serve.zig").serve;
pub const handler = @import("handler/root.zig");
pub const Response = @import("Response.zig");
pub const Route = @import("Route.zig");
pub const RouteSet = @import("RouteSet.zig");

test {
    _ = std.testing.refAllDecls(@This());
}