diff options
Diffstat (limited to 'src/conn/config.zig')
-rw-r--r-- | src/conn/config.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/conn/config.zig b/src/conn/config.zig index b4e7cff..3f577d1 100644 --- a/src/conn/config.zig +++ b/src/conn/config.zig @@ -4,9 +4,9 @@ const SSHashMap = std.StringHashMap([]const u8); const Config = @This(); allocator: std.mem.Allocator, -address: union(enum){ +address: union(enum) { net: std.net.Address, - unix: []const u8, + unix: []const u8, // std.net.Address looks like it handles unix sockets but it doesn't really. }, database: ?[]const u8 = null, user: []const u8, |