Add postgres support in db package

This commit is contained in:
jaina heartles 2022-09-11 01:55:20 -07:00
parent c8641247fe
commit e94e4384bb
6 changed files with 469 additions and 223 deletions

View file

@ -43,6 +43,7 @@ pub fn build(b: *std.build.Builder) void {
exe.addPackage(http_pkg);
exe.linkSystemLibrary("sqlite3");
exe.linkSystemLibrary("pq");
exe.linkLibC();
const util_tests = b.addTest("src/util/lib.zig");