diff options
author | Martin Ashby <martin@ashbysoft.com> | 2023-09-27 19:44:53 +0100 |
---|---|---|
committer | Martin Ashby <martin@ashbysoft.com> | 2023-09-27 19:44:53 +0100 |
commit | 4c5101d5f3a60c58190809166f1aa1eac2e7875f (patch) | |
tree | 3273264492d637b26642e36bdd3e898421390a5d /src/config.zig | |
parent | 10cbd00671f7144122f1d79a3ac1f67cbb9a51c6 (diff) | |
download | pgz-4c5101d5f3a60c58190809166f1aa1eac2e7875f.tar.gz pgz-4c5101d5f3a60c58190809166f1aa1eac2e7875f.tar.bz2 pgz-4c5101d5f3a60c58190809166f1aa1eac2e7875f.tar.xz pgz-4c5101d5f3a60c58190809166f1aa1eac2e7875f.zip |
Move conn and config to their own folders analogous to pgx
Diffstat (limited to 'src/config.zig')
-rw-r--r-- | src/config.zig | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/config.zig b/src/config.zig deleted file mode 100644 index b4e7cff..0000000 --- a/src/config.zig +++ /dev/null @@ -1,13 +0,0 @@ -const std = @import("std"); -const SSHashMap = std.StringHashMap([]const u8); - -const Config = @This(); - -allocator: std.mem.Allocator, -address: union(enum){ - net: std.net.Address, - unix: []const u8, -}, -database: ?[]const u8 = null, -user: []const u8, -password: ?[]const u8 = null, |