1 2 3 4 5 6 7 8 9 10 11
pub mod embedded_asset; pub mod config; pub mod context; pub mod server; use crate::context::App; pub async fn run() -> anyhow::Result<()> { server::serve(App::new()?).await?; Ok(()) }