//! The main entry point.
usecommand::{Cli, Parser, TuiError};#[tokio::main]
async fnmain()->Result<(), TuiError>{// Needed to use `tokio-console` in debug mode
// #[cfg(debug_assertions)]
// console_subscriber::init();
let parsed =Cli::<String>::parse();
parsed.execute().await
}