blob: 8da696840374361490c3b140bc9f3156cf3fb9a0 (
plain)
1
2
3
4
5
6
7
8
|
const std = @import("std.zig");
pub const Method = @import("http/method.zig").Method;
pub const Status = @import("http/status.zig").Status;
test {
std.testing.refAllDecls(@This());
}
|