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