1use axum::response::IntoResponse; 2 3pub async fn handler() -> impl IntoResponse { 4 "Tree handler" 5}