use axum::{extract::Path, response::IntoResponse}; pub async fn get(Path(id): Path) -> impl IntoResponse { format!("User ID: {}", id) }