1 2 3 4 5 6 7 8
#[tokio::main] async fn main() -> anyhow::Result<()> { tracing_subscriber::fmt::init(); let config = inapt::Config::from_env()?; let app = config.build()?; app.run().await }