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