1 2 3 4 5 6 7 8 9 10
mod cli; use anyhow::Result; use clap::Parser; use cli::Cli; fn main() -> Result<()> { Cli::parse().process_command() }