use axum::extract::Path; use axum::response::{Html, Redirect}; async fn show_profile(Path(name): Path) -> Html { Html(name) } async fn bounce(Path(next): Path) -> Redirect { Redirect::to(&next) }