diff options
Diffstat (limited to 'src/config.zig')
-rw-r--r-- | src/config.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/config.zig b/src/config.zig index eb2a52b..b4e7cff 100644 --- a/src/config.zig +++ b/src/config.zig @@ -8,6 +8,6 @@ address: union(enum){ net: std.net.Address, unix: []const u8, }, -database: ?[]const u8, +database: ?[]const u8 = null, user: []const u8, -password: []const u8, +password: ?[]const u8 = null, |