1 2 3 4 5 6 7 8 9
//! The git-pincer executable entry: Parses arguments and dispatches them to subcommands. use anyhow::Result; use clap::Parser; use git_pincer::cli::Cli; fn main() -> Result<()> { Cli::parse().run() }