aboutsummaryrefslogtreecommitdiff
path: root/src/http/root.zig
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2026-06-06 07:57:50 +0200
committerNathan Reiner <nathan@nathanreiner.xyz>2026-06-06 07:57:50 +0200
commit51307d973255e32ec1440083dee383e8b2cd8878 (patch)
treedac0309c7abd40d2a3822fca3f7df0fd485e04f0 /src/http/root.zig
parent17561c6be1e4fba11e243f2ac842ebe26fae7e60 (diff)
Implement static handler and synchronous server handling
Diffstat (limited to 'src/http/root.zig')
-rw-r--r--src/http/root.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/root.zig b/src/http/root.zig
index 2fa4042..88d1420 100644
--- a/src/http/root.zig
+++ b/src/http/root.zig
@@ -3,7 +3,7 @@
const std = @import("std");
pub const Server = @import("Server.zig");
-pub const handler = @import("handler.zig");
+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");