1use axum::{routing::get, Router}; 2 3pub async fn app() -> Router<()> { 4 Router::new().route("/", get(|| async { "Hello, crates.io!" })) 5}