1
0
Fork 0
mirror of https://github.com/tokio-rs/axum.git synced 2025-03-26 00:27:01 +01:00

Fix 404 example ()

Forgot to actually set the correct status code
This commit is contained in:
David Pedersen 2021-08-21 12:02:50 +02:00 committed by GitHub
parent 66a806630c
commit 2bbf6105d0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,7 +6,8 @@
use axum::{
handler::{get, Handler},
response::Html,
http::StatusCode,
response::{Html, IntoResponse},
Router,
};
use std::net::SocketAddr;
@ -38,6 +39,6 @@ async fn handler() -> Html<&'static str> {
Html("<h1>Hello, World!</h1>")
}
async fn handler_404() -> &'static str {
"nothing to see here"
async fn handler_404() -> impl IntoResponse {
(StatusCode::NOT_FOUND, "nothing to see here")
}