diff options
Diffstat (limited to 'src/api/root.zig')
| -rw-r--r-- | src/api/root.zig | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/api/root.zig b/src/api/root.zig index 5128aa1..7acd953 100644 --- a/src/api/root.zig +++ b/src/api/root.zig @@ -3,6 +3,11 @@ const std = @import("std"); +const http = @import("http"); +const Interface = http.handler.Interface; + +pub const interfaces: []const Interface = &.{}; + test { _ = std.testing.refAllDecls(@This()); } |