entrenar/storage/sqlite/backend/mod.rs
1//! SQLite Backend implementation for Experiment Storage.
2//!
3//! Sovereign, local-first storage using SQLite with WAL mode.
4//!
5//! # Toyota Way: (Heijunka)
6//!
7//! SQLite provides consistent, predictable performance without external dependencies.
8
9pub(crate) mod schema;
10mod sqlite_backend;
11
12pub use sqlite_backend::SqliteBackend;
13
14#[cfg(test)]
15#[path = "tests/mod.rs"]
16mod tests;