diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2026-05-23 07:11:00 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2026-05-23 07:11:00 +0200 |
| commit | f109fb62b7e45d54b0c9f524a0707f3c2688b6cb (patch) | |
| tree | e539196b2b97fc3e8f11837c4638288b8494ff80 /src/http/root.zig | |
| parent | 79ba17323c33c7e7e6b4b3ef526db85f1cf9c086 (diff) | |
add api sketch
Diffstat (limited to 'src/http/root.zig')
| -rw-r--r-- | src/http/root.zig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/http/root.zig b/src/http/root.zig index 743e1c4..317dacd 100644 --- a/src/http/root.zig +++ b/src/http/root.zig @@ -2,6 +2,9 @@ const std = @import("std"); +pub const Server = @import("Server.zig"); +pub const Url = @import("Url.zig"); + test { _ = std.testing.refAllDecls(@This()); } |