mirror of
https://github.com/actix/actix-website
synced 2025-02-23 20:53:01 +01:00
24 lines
521 B
Rust
24 lines
521 B
Rust
// <request-routing>
|
|
use actix_web::{web, App, HttpRequest, HttpServer, Responder};
|
|
|
|
fn index(_req: HttpRequest) -> impl Responder {
|
|
"Hello from the index page."
|
|
}
|
|
|
|
fn hello(path: web::Path<String>) -> impl Responder {
|
|
format!("Hello {}!", &path)
|
|
}
|
|
|
|
fn main() {
|
|
HttpServer::new(|| {
|
|
App::new()
|
|
.service(web::resource("/").to(index))
|
|
.service(web::resource("/{name}").to(hello))
|
|
})
|
|
.bind("127.0.0.1:8088")
|
|
.unwrap()
|
|
.run()
|
|
.unwrap();
|
|
}
|
|
// </request-routing>
|