mod api; mod app; mod commands; mod config; mod dependencies; mod error; mod router; mod state; use anyhow::Result; use app::Application; #[tokio::main] async fn main() -> Result<()> { let app = Application::build().await?; app.run().await?; Ok(()) }