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