1 2 3 4 5 6 7 8
use leetup::{cmd, Result}; #[tokio::main] async fn main() -> Result<()> { env_logger::init(); cmd::process().await?; Ok(()) }