1 2 3 4 5 6 7
use clap::Parser; use rtango::cmd::{Cli, run}; fn main() -> anyhow::Result<()> { let cli = Cli::parse(); run(cli) }