diff options
Diffstat (limited to 'src/http/root.zig')
| -rw-r--r-- | src/http/root.zig | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/http/root.zig b/src/http/root.zig new file mode 100644 index 0000000..743e1c4 --- /dev/null +++ b/src/http/root.zig @@ -0,0 +1,7 @@ +//! All HTTP specific abstractions belong here. + +const std = @import("std"); + +test { + _ = std.testing.refAllDecls(@This()); +} |