use axum::response::{IntoResponse, Redirect}; pub async fn handle_slash_redir() -> impl IntoResponse { Redirect::temporary("/") } pub async fn handle_slash() -> impl IntoResponse {}