diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2025-11-17 09:57:09 +0100 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2025-11-17 09:57:09 +0100 |
| commit | e95cf5c7b6a08eb560763d5167fbddc1c2117bcc (patch) | |
| tree | 2f7815c9f39328fcaced2113de727f63e4837fa3 /src/root.zig | |
| parent | 0016aaa197697ec5ff38dfb3f63ac8b6f74b48e0 (diff) | |
add file uploading and multi-threading
Diffstat (limited to 'src/root.zig')
| -rw-r--r-- | src/root.zig | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/root.zig b/src/root.zig index 301664e..c5ea36e 100644 --- a/src/root.zig +++ b/src/root.zig @@ -1,6 +1,8 @@ -//! By convention, root.zig is the root source file when making a library. const std = @import("std"); + pub const log = @import("log.zig"); + pub const routes = @import("routes/root.zig"); -pub const Storage = @import("storage/root.zig"); +pub const Server = @import("server.zig"); +pub const Storage = @import("storage/root.zig"); |