summaryrefslogtreecommitdiff
path: root/src/root.zig
diff options
context:
space:
mode:
authorRobby Zambito <contact@robbyzambito.me>2026-01-03 05:33:13 +0000
committerRobby Zambito <contact@robbyzambito.me>2026-01-03 05:33:56 +0000
commitbd9829f6842f0c989389aa4ce9784ab6e3cb4ee5 (patch)
tree95da64a0a288fa3128e7e91bbb292701a56c3a77 /src/root.zig
parenta4ec798521bda5564e2dc96c2184100116b54d28 (diff)
Organize things
Making it easier to use the server as a library
Diffstat (limited to 'src/root.zig')
-rw-r--r--src/root.zig5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/root.zig b/src/root.zig
index e46af60..49631cb 100644
--- a/src/root.zig
+++ b/src/root.zig
@@ -1,2 +1,3 @@
-pub const MessageParser = @import("server/message_parser.zig");
-pub const Server = @import("server/main.zig");
+const MessageParser = @import("server/message_parser.zig");
+
+pub const Server = @import("server/Server.zig");