oneTenCubed-hey 0.3.4

keyword-based note retrieval tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod cli;
pub mod docs;
pub mod editor;
pub mod search;
pub mod storage;

pub mod app {
    pub fn fatal(msg: &str) -> ! {
        eprintln!("{msg}");
        std::process::exit(1);
    }
}