#[tokio::main] async fn main() -> anyhow::Result<()> { dotenvy::dotenv().ok(); let _rust_log = std::env::var("RUST_LOG").unwrap_or_else(|_| "info".into()); tracing_subscriber::fmt::init(); gateway::proxy::run().await }