1 2 3 4 5 6 7 8 9 10 11 12 13
mod cli; use anyhow::Result; #[tokio::main] async fn main() -> Result<()> { tracing_subscriber::fmt() .with_env_filter(tracing_subscriber::EnvFilter::from_default_env()) .without_time() .init(); cli::run().await }