From ddc6bee3757d3e68a14fafdc47eb5d0a0ba923bb Mon Sep 17 00:00:00 2001 From: Martin Ashby Date: Sat, 23 Sep 2023 21:26:06 +0100 Subject: Got a working test connecting to postgres server and reading data. Added a couple more message types to facilitate this. --- src/config.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/config.zig') 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, -- cgit v1.2.3-ZIG