Skip to main content

fond_store/
lib.rs

1//! SQLite persistence, migrations, and FTS5 search for fond.
2//!
3//! The database is a derived index — `.cook` recipe files on disk
4//! are the source of truth, and `fond reindex` rebuilds the DB
5//! from those files. The database is disposable; the files are sacred.
6
7mod db;
8mod error;
9mod paths;
10pub mod reindex;
11mod repo;
12
13pub use db::*;
14pub use error::*;
15pub use paths::*;
16pub use reindex::{ReindexReport, reindex};
17pub use repo::*;