kimun-notes 0.23.2

A terminal-based notes application
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Library entry-point exposing modules needed by integration tests.
pub mod ask;
pub mod cli;
pub mod components;
pub mod keys;
pub mod rag;
// Self-contained modules with no dependency on the rest of kimün. Each was its
// own workspace crate and is kept extractable: nothing inside them may name
// `crate::` outside their own subtree (enforced in .github/workflows/check.yml).
pub mod ropetext;
pub mod server_client;
pub mod settings;
pub mod update;
pub mod util;

#[cfg(test)]
mod test_support;