1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
mod actions; mod cwd; mod dispatch; #[cfg(test)] mod tests; mod types; use anyhow::Result; use clap::Parser; use types::Cli; pub async fn run() -> Result<()> { dispatch::run_cli(Cli::parse()).await }