Skip to main content

kimun_notes/
lib.rs

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