1use axum::response::IntoResponse; 2 3pub async fn list() -> impl IntoResponse { 4 "Tag list" 5} 6 7pub async fn detail() -> impl IntoResponse { 8 "Tag detail" 9}