mylloon.fr/src/routes/not_found.rs

6 lines
129 B
Rust
Raw Normal View History

2023-02-08 22:27:40 +01:00
use actix_web::{HttpResponse, Responder};
pub async fn page() -> impl Responder {
HttpResponse::NotFound().body("404 :/")
}