axum/examples/hello_world.rs

30 lines
815 B
Rust
Raw Normal View History

2021-06-13 11:22:02 +02:00
use awebframework::prelude::*;
2021-06-09 09:03:09 +02:00
use http::StatusCode;
2021-05-31 10:20:07 +02:00
use std::net::SocketAddr;
#[tokio::main]
async fn main() {
tracing_subscriber::fmt::init();
// build our application with some routes
2021-06-04 01:00:48 +02:00
let app = route("/", get(handler)).route("/greet/:name", get(greet));
2021-05-31 10:20:07 +02:00
// run it
2021-05-31 10:20:07 +02:00
let addr = SocketAddr::from(([127, 0, 0, 1], 3000));
tracing::debug!("listening on {}", addr);
app.serve(&addr).await.unwrap();
2021-05-31 10:20:07 +02:00
}
2021-06-09 09:03:09 +02:00
async fn handler() -> response::Html<&'static str> {
2021-06-04 01:00:48 +02:00
response::Html("<h1>Hello, World!</h1>")
2021-05-31 10:20:07 +02:00
}
2021-06-09 09:03:09 +02:00
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)
}
}