| author | |
| committer | |
| log | 4d2fb400f08848f207f205cc3f5547f8d265c3e4 |
| tree | c0e3b7333f26487c38f8a13e7bc26750e00fd687 |
| parent | 7c9a043e7bbe686f945cd98756b0dc8f4ff422f3 |
| signature |
1 files changed, 2 insertions(+), 2 deletions(-)
src/lib.zig+2-2| ... | ... | @@ -6,7 +6,7 @@ pub const DriverType = enum { |
| 6 | 6 | |
| 7 | 7 | pub fn Driver(comptime etype: DriverType) type { |
| 8 | 8 | return switch (etype) { |
| 9 | .sqlite3 => @import("./sqlite3.zig"), | |
| 9 | .sqlite3 => backend.sqlite, | |
| 10 | 10 | }; |
| 11 | 11 | } |
| 12 | 12 | |
| ... | ... | @@ -86,6 +86,6 @@ pub const Engine = union(DriverType) { |
| 86 | 86 | } |
| 87 | 87 | }; |
| 88 | 88 | |
| 89 | pub const backer = struct { | |
| 89 | pub const backend = struct { | |
| 90 | 90 | pub const sqlite = @import("sqlite"); |
| 91 | 91 | }; |