mirror of
https://github.com/tokio-rs/axum.git
synced 2024-12-29 15:49:16 +01:00
29 lines
815 B
Rust
29 lines
815 B
Rust
use awebframework::prelude::*;
|
|
use http::StatusCode;
|
|
use std::net::SocketAddr;
|
|
|
|
#[tokio::main]
|
|
async fn main() {
|
|
tracing_subscriber::fmt::init();
|
|
|
|
// build our application with some routes
|
|
let app = route("/", get(handler)).route("/greet/:name", get(greet));
|
|
|
|
// run it
|
|
let addr = SocketAddr::from(([127, 0, 0, 1], 3000));
|
|
tracing::debug!("listening on {}", addr);
|
|
app.serve(&addr).await.unwrap();
|
|
}
|
|
|
|
async fn handler() -> response::Html<&'static str> {
|
|
response::Html("<h1>Hello, World!</h1>")
|
|
}
|
|
|
|
async fn greet(params: extract::UrlParamsMap) -> Result<String, StatusCode> {
|
|
if let Some(name) = params.get("name") {
|
|
Ok(format!("Hello {}!", name))
|
|
} else {
|
|
// if the route matches "name" will be present
|
|
Err(StatusCode::INTERNAL_SERVER_ERROR)
|
|
}
|
|
}
|