mirror of https://github.com/tokio-rs/axum
parent
66a806630c
commit
2bbf6105d0
|
@ -6,7 +6,8 @@
|
||||||
|
|
||||||
use axum::{
|
use axum::{
|
||||||
handler::{get, Handler},
|
handler::{get, Handler},
|
||||||
response::Html,
|
http::StatusCode,
|
||||||
|
response::{Html, IntoResponse},
|
||||||
Router,
|
Router,
|
||||||
};
|
};
|
||||||
use std::net::SocketAddr;
|
use std::net::SocketAddr;
|
||||||
|
@ -38,6 +39,6 @@ async fn handler() -> Html<&'static str> {
|
||||||
Html("<h1>Hello, World!</h1>")
|
Html("<h1>Hello, World!</h1>")
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn handler_404() -> &'static str {
|
async fn handler_404() -> impl IntoResponse {
|
||||||
"nothing to see here"
|
(StatusCode::NOT_FOUND, "nothing to see here")
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue