2019-06-12 18:14:10 -04:00
|
|
|
// <main-example>
|
2019-06-16 23:37:14 -04:00
|
|
|
use actix_web::{web, App, HttpRequest, HttpServer, Responder};
|
2019-06-12 18:14:10 -04:00
|
|
|
|
2019-12-29 01:38:51 +09:00
|
|
|
async fn greet(req: HttpRequest) -> impl Responder {
|
2019-06-12 18:14:10 -04:00
|
|
|
let name = req.match_info().get("name").unwrap_or("World");
|
2019-06-16 23:37:14 -04:00
|
|
|
format!("Hello {}!", &name)
|
2019-06-12 18:14:10 -04:00
|
|
|
}
|
|
|
|
|
2020-09-12 16:21:54 +01:00
|
|
|
#[actix_web::main]
|
2019-12-29 01:38:51 +09:00
|
|
|
async fn main() -> std::io::Result<()> {
|
2019-06-12 18:14:10 -04:00
|
|
|
HttpServer::new(|| {
|
|
|
|
App::new()
|
2019-06-19 14:24:31 -04:00
|
|
|
.route("/", web::get().to(greet))
|
|
|
|
.route("/{name}", web::get().to(greet))
|
2019-06-12 18:14:10 -04:00
|
|
|
})
|
2022-02-26 03:56:24 +00:00
|
|
|
.bind(("127.0.0.1", 8080))?
|
2019-06-12 18:14:10 -04:00
|
|
|
.run()
|
2019-12-29 01:38:51 +09:00
|
|
|
.await
|
2019-06-12 18:14:10 -04:00
|
|
|
}
|
|
|
|
// </main-example>
|