blob: eb2a52b97f7245c527e4841d0793f94eaf7e285e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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,
user: []const u8,
password: []const u8,
|