1mod cli; 2mod cmd; 3mod config; 4 5#[tokio::main] 6async fn main() -> anyhow::Result<()> { 7 crate::cli::run().await 8}