aboutsummaryrefslogtreecommitdiff
path: root/src/db/root.zig
diff options
context:
space:
mode:
authorAlexander Rolley <arolley35@gmail.com>2026-05-20 15:27:00 +0200
committerAlexander Rolley <arolley35@gmail.com>2026-05-20 15:27:00 +0200
commit004b9941cbb703ceebb4804a6f0a2328889d38a8 (patch)
tree1682cc344bcd856d88d32966a89aeadf8c93fb75 /src/db/root.zig
parent37493d9907f1d7f224ca0b08245f5f3d5323c53c (diff)
Start on Sqlite3.
Diffstat (limited to 'src/db/root.zig')
-rw-r--r--src/db/root.zig7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/db/root.zig b/src/db/root.zig
index 049a63b..4ca9847 100644
--- a/src/db/root.zig
+++ b/src/db/root.zig
@@ -1,9 +1,10 @@
-//! Implements the layer between the sqlite
-//! database and the interface for the api endpoints or
-//! the cli.
+//! Implements the layer between the sqlite database and the interface for the
+//! API endpoints or the CLI.
const std = @import("std");
+pub const sqlite = @import("sqlite.zig");
+
test {
_ = std.testing.refAllDecls(@This());
}