1 2 3 4 5 6 7 8 9 10 11 12
#![deny(warnings, clippy::todo, clippy::unimplemented)] use clap::Parser; use smart_patcher::Cli; use smart_patcher::cli_exec; fn main() -> anyhow::Result<()> { let args = Cli::parse(); crate::cli_exec(args)?; Ok(()) }