aboutsummaryrefslogtreecommitdiff
path: root/src/db/root.zig
blob: 4ca9847b6d6765e159d978a5dd6c2ff4d7642121 (plain)
1
2
3
4
5
6
7
8
9
10
//! 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());
}