mirror of
https://github.com/actix/actix-website
synced 2024-11-24 16:52:59 +01:00
21 lines
478 B
Rust
21 lines
478 B
Rust
// <main-example>
|
|
use actix_web::{web, App, HttpRequest, HttpServer, Responder};
|
|
|
|
fn greet(req: HttpRequest) -> impl Responder {
|
|
let name = req.match_info().get("name").unwrap_or("World");
|
|
format!("Hello {}!", &name)
|
|
}
|
|
|
|
fn main() {
|
|
HttpServer::new(|| {
|
|
App::new()
|
|
.route("/", web::get().to(greet))
|
|
.route("/{name}", web::get().to(greet))
|
|
})
|
|
.bind("127.0.0.1:8088")
|
|
.unwrap()
|
|
.run()
|
|
.unwrap();
|
|
}
|
|
// </main-example>
|