authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2026-04-29 15:07:41 -07:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2026-04-29 15:07:41 -07:00
log4e148236e27c1371109d9c1d01ad02858859f519
tree7ff47958fdc7f2396bcc931b3a8326c478d763c1
parent4d2fb400f08848f207f205cc3f5547f8d265c3e4
signaturebadge-check Signed by SSH key SHA256:4hHJbtBRU58AYXwjL7fkz2fnQHdiye8x1QpTCQ0sHNw

oops that was a bad change


1 files changed, 1 insertions(+), 5 deletions(-)

src/lib.zig+1-5
...@@ -6,7 +6,7 @@ pub const DriverType = enum {...@@ -6,7 +6,7 @@ pub const DriverType = enum {
66
7pub fn Driver(comptime etype: DriverType) type {7pub fn Driver(comptime etype: DriverType) type {
8 return switch (etype) {8 return switch (etype) {
9 .sqlite3 => backend.sqlite,9 .sqlite3 => @import("./sqlite3.zig"),
10 };10 };
11}11}
1212
...@@ -85,7 +85,3 @@ pub const Engine = union(DriverType) {...@@ -85,7 +85,3 @@ pub const Engine = union(DriverType) {
85 };85 };
86 }86 }
87};87};
88
89pub const backend = struct {
90 pub const sqlite = @import("sqlite");
91};