diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2026-05-21 16:04:53 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2026-05-21 16:04:53 +0200 |
| commit | 79ba17323c33c7e7e6b4b3ef526db85f1cf9c086 (patch) | |
| tree | aa5e2f6b6d21ccf6d9f24779e87d7d3c65def345 /src/db/root.zig | |
| parent | 78ba18b890655b12650afedac3a9d57ef95567d0 (diff) | |
| parent | a9b6b2495de6c97fd17b37885dd99d8557a9ea0e (diff) | |
Merge branch 'develop' of https://gitlab.com/Jockerkat/memora into dev
Diffstat (limited to 'src/db/root.zig')
| -rw-r--r-- | src/db/root.zig | 7 |
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()); } |