zotron 0.2.0

Typed CLI for Zotero — search, manage, export, OCR, and RAG over your academic library
Documentation
1
2
3
4
5
6
7
8
9
fn main() {
    match zotron_cli::run(std::env::args_os()) {
        Ok(output) => print!("{output}"),
        Err(message) => {
            eprintln!("{}", zotron_cli::format_error_json(&message));
            std::process::exit(1);
        }
    }
}