aboutsummaryrefslogtreecommitdiff
path: root/src/root.zig
diff options
context:
space:
mode:
authorIsaac Freund <ifreund@ifreund.xyz>2020-05-02 16:20:32 +0200
committerIsaac Freund <ifreund@ifreund.xyz>2020-05-02 16:20:32 +0200
commit5dbff2c0181804341c5a3edc33370853e6388a9e (patch)
tree835a5cdb47a1a60cca688dad3ba300d510701814 /src/root.zig
parentce05dddea3f3c65f67b39894b0f9ac9a972550fe (diff)
downloadriver-5dbff2c0181804341c5a3edc33370853e6388a9e.tar.gz
river-5dbff2c0181804341c5a3edc33370853e6388a9e.tar.xz
Make Server a toplevel struct
Diffstat (limited to 'src/root.zig')
-rw-r--r--src/root.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/root.zig b/src/root.zig
index cd2dee2..5413b9d 100644
--- a/src/root.zig
+++ b/src/root.zig
@@ -5,7 +5,7 @@ const util = @import("util.zig");
const Box = @import("box.zig").Box;
const Log = @import("log.zig").Log;
const Output = @import("output.zig").Output;
-const Server = @import("server.zig").Server;
+const Server = @import("server.zig");
const Seat = @import("seat.zig").Seat;
const View = @import("view.zig").View;
const ViewStack = @import("view_stack.zig").ViewStack;