1 2 3 4 5 6 7 8 9 10 11
//! The git-pincer executable entry: Parses arguments and dispatches them to subcommands. use clap::Parser; use git_pincer::cli::Cli; fn main() { if let Err(e) = Cli::parse().run() { eprintln!("{e:#}"); std::process::exit(1); } }