2019-06-12 18:14:10 -04:00
|
|
|
// <request-routing>
|
|
|
|
use actix_web::{web, App, HttpRequest, HttpResponse, HttpServer};
|
|
|
|
|
|
|
|
fn index(_req: HttpRequest) -> HttpResponse {
|
|
|
|
HttpResponse::Ok().body("Hello from the index page.")
|
|
|
|
}
|
|
|
|
|
|
|
|
fn hello(path: web::Path<String>) -> HttpResponse {
|
|
|
|
HttpResponse::Ok().body(format!("Hello {}!", &path))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
HttpServer::new(|| {
|
|
|
|
App::new()
|
|
|
|
.service(web::resource("/").to(index))
|
|
|
|
.service(web::resource("/{name}").to(hello))
|
|
|
|
})
|
2019-06-13 00:32:48 -04:00
|
|
|
.bind("127.0.0.1:8088")
|
2019-06-12 18:14:10 -04:00
|
|
|
.unwrap()
|
|
|
|
.run()
|
|
|
|
.unwrap();
|
|
|
|
}
|
|
|
|
// </request-routing>
|