aboutsummaryrefslogtreecommitdiff
path: root/src/root.zig
diff options
context:
space:
mode:
authorIsaac Freund <ifreund@ifreund.xyz>2020-05-02 16:40:05 +0200
committerIsaac Freund <ifreund@ifreund.xyz>2020-05-02 16:40:05 +0200
commit96f2ff793c7606c8979d45b62b827c1cc50667d1 (patch)
tree6746c09489a28d0f08c35b279503f40ab92d5c0e /src/root.zig
parent7ddcebbbab8479ad80574db40aee8e894e411b2e (diff)
downloadriver-96f2ff793c7606c8979d45b62b827c1cc50667d1.tar.gz
river-96f2ff793c7606c8979d45b62b827c1cc50667d1.tar.xz
Make Output 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 5413b9d..71aac0c 100644
--- a/src/root.zig
+++ b/src/root.zig
@@ -4,7 +4,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 Output = @import("output.zig");
const Server = @import("server.zig");
const Seat = @import("seat.zig").Seat;
const View = @import("view.zig").View;