Make Server a toplevel struct

This commit is contained in:
Isaac Freund
2020-05-02 16:20:32 +02:00
parent ce05dddea3
commit 5dbff2c018
6 changed files with 167 additions and 168 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ const std = @import("std");
const c = @import("c.zig");
const Decoration = @import("decoration.zig").Decoration;
const Server = @import("server.zig").Server;
const Server = @import("server.zig");
pub const DecorationManager = struct {
const Self = @This();