use clap::Parser; mod api; #[tokio::main(flavor = "current_thread")] async fn main() -> anyhow::Result<()> { tracing_subscriber::fmt::init(); api::run(api::ApiArgs::parse()).await }