authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2021-08-23 17:26:09 -07:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2021-08-23 17:26:09 -07:00
log38a255e5698796eb13a171a6ce6f33b98d65cfe2
treeb60933692d9be499993bde2ac9a213cdd9f03fec
parent246ade7b2b8f138ebd477f86bf76a7a194144897

expose the underlying libraries in a `backer` namespace


1 files changed, 4 insertions(+), 0 deletions(-)

src/lib.zig+4
...@@ -9,3 +9,7 @@ pub fn engine(etype: EngineType) type {...@@ -9,3 +9,7 @@ pub fn engine(etype: EngineType) type {
9 .sqlite3 => @import("./sqlite3.zig"),9 .sqlite3 => @import("./sqlite3.zig"),
10 };10 };
11}11}
12
13pub const backer = struct {
14 pub const sqlite = @import("sqlite");
15};