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;
7// Self-contained modules with no dependency on the rest of kimün. Each was its
8// own workspace crate and is kept extractable: nothing inside them may name
9// `crate::` outside their own subtree (enforced in .github/workflows/check.yml).
10pub mod ropetext;
11pub mod server_client;
12pub mod settings;
13pub mod update;
14pub mod util;
15
16#[cfg(test)]
17mod test_support;