use rocket::Request; #[catch(404)] pub fn not_found(_: &Request) -> String { String::from("This route doesn't exist or doesn't use the specified parameters.") }