bear-rs 0.2.0

Rust library for reading and writing Bear.app notes via the local SQLite database
Documentation
1
2
3
4
5
6
fn main() {
    if let Err(err) = bear_rs::run() {
        eprintln!("error: {err:#}");
        std::process::exit(1);
    }
}