mirror of
https://github.com/tokio-rs/axum.git
synced 2024-12-14 18:55:48 +01:00
34 lines
969 B
Rust
34 lines
969 B
Rust
//! Run with
|
|
//!
|
|
//! ```not_rust
|
|
//! cargo run -p auto-reload
|
|
//! ```
|
|
|
|
use axum::{response::Html, routing::get, Router};
|
|
use listenfd::ListenFd;
|
|
use tokio::net::TcpListener;
|
|
|
|
#[tokio::main]
|
|
async fn main() {
|
|
// build our application with a route
|
|
let app = Router::new().route("/", get(handler));
|
|
|
|
let mut listenfd = ListenFd::from_env();
|
|
let listener = match listenfd.take_tcp_listener(0).unwrap() {
|
|
// if we are given a tcp listener on listen fd 0, we use that one
|
|
Some(listener) => {
|
|
listener.set_nonblocking(true).unwrap();
|
|
TcpListener::from_std(listener).unwrap()
|
|
}
|
|
// otherwise fall back to local listening
|
|
None => TcpListener::bind("127.0.0.1:3000").await.unwrap(),
|
|
};
|
|
|
|
// run it
|
|
println!("listening on {}", listener.local_addr().unwrap());
|
|
axum::serve(listener, app).await.unwrap();
|
|
}
|
|
|
|
async fn handler() -> Html<&'static str> {
|
|
Html("<h1>Hello, World!</h1>")
|
|
}
|