diff options
| author | Isaac Freund <ifreund@ifreund.xyz> | 2020-05-02 16:20:32 +0200 |
|---|---|---|
| committer | Isaac Freund <ifreund@ifreund.xyz> | 2020-05-02 16:20:32 +0200 |
| commit | 5dbff2c0181804341c5a3edc33370853e6388a9e (patch) | |
| tree | 835a5cdb47a1a60cca688dad3ba300d510701814 /src/root.zig | |
| parent | ce05dddea3f3c65f67b39894b0f9ac9a972550fe (diff) | |
| download | river-5dbff2c0181804341c5a3edc33370853e6388a9e.tar.gz river-5dbff2c0181804341c5a3edc33370853e6388a9e.tar.xz | |
Make Server a toplevel struct
Diffstat (limited to 'src/root.zig')
| -rw-r--r-- | src/root.zig | 2 |
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; |
