1 2 3 4 5 6 7 8 9 10 11 12 13 14
use anyhow::Result; use tracing::error; use whatawhat::cli::run_cli; #[tokio::main] async fn main() -> Result<()> { run_cli().await.inspect_err(|e| { error!("Error running cli {e:?}"); })?; Ok(()) }