Skip to main content

kimun_notes/
lib.rs

1// Library entry-point exposing modules needed by integration tests.
2pub mod cli;
3pub mod components;
4pub mod keys;
5pub mod rag;
6pub mod settings;
7pub mod update;
8pub mod util;
9
10#[cfg(test)]
11mod test_support;