use actix_web::{HttpResponse, Responder}; pub async fn page() -> impl Responder { HttpResponse::NotFound().body("404 :/") }