codio 0.1.1

Production-ready commit message generator using local Ollama LLM
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[tokio::main]
async fn main() {
    let exit_code = match codio::run().await {
        Ok(()) => 0,
        Err(err) => {
            eprintln!("error: {err}");
            1
        }
    };
    std::process::exit(exit_code);
}