fuckmit 0.3.0-alpha.1

AI-powered git commit message generator
Documentation
1
2
3
4
5
6
7
8
9
10
11
use clap::Parser;
use fuckmit::commands::cli::Cli;

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    // Parse command line arguments
    let cli = Cli::parse();
    cli.execute().await?;

    Ok(())
}