mirror of
https://github.com/ziglang/zig.git
synced 2024-11-15 08:33:06 +00:00
9 lines
189 B
Zig
9 lines
189 B
Zig
|
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());
|
||
|
}
|