1 2 3 4 5 6 7 8
use axum::{ http::StatusCode, response::{Html, IntoResponse}, }; pub async fn not_found_handler() -> impl IntoResponse { (StatusCode::NOT_FOUND, Html("<h1>404</h1><p>Not Found</p>")) }