1 2 3 4 5 6 7 8
# axum-route ```rust #[route(get, "/")] pub async fn index() -> String { "Hello World!".into_string() } ```