1 2 3 4 5 6 7 8
use clap::Parser; use octopush::util::cli; fn main() -> Result<(), std::io::Error> { cli::run(cli::Cli::parse())?; Ok(()) }