diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2026-06-06 07:57:50 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2026-06-06 07:57:50 +0200 |
| commit | 51307d973255e32ec1440083dee383e8b2cd8878 (patch) | |
| tree | dac0309c7abd40d2a3822fca3f7df0fd485e04f0 /src/http/RouteSet.zig | |
| parent | 17561c6be1e4fba11e243f2ac842ebe26fae7e60 (diff) | |
Implement static handler and synchronous server handling
Diffstat (limited to 'src/http/RouteSet.zig')
| -rw-r--r-- | src/http/RouteSet.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/RouteSet.zig b/src/http/RouteSet.zig index 623a2a9..de8b3c2 100644 --- a/src/http/RouteSet.zig +++ b/src/http/RouteSet.zig @@ -1,7 +1,7 @@ const std = @import("std"); const Route = @import("Route.zig"); -const handler = @import("handler.zig"); +const handler = @import("handler/root.zig"); const Interface = handler.Interface; const Context = handler.Context; |