1
0
mirror of https://github.com/actix/actix-website synced 2025-02-23 20:53:01 +01:00

24 lines
563 B
Rust
Raw Normal View History

// <request-routing>
use actix_web::{web, App, HttpRequest, HttpServer, Responder};
2019-12-29 02:09:52 +09:00
async fn index(_req: HttpRequest) -> impl Responder {
"Hello from the index page."
}
2019-12-29 02:09:52 +09:00
async fn hello(path: web::Path<String>) -> impl Responder {
format!("Hello {}!", &path)
}
2019-12-29 02:09:52 +09:00
#[actix_rt::main]
async fn main() -> std::io::Result<()> {
HttpServer::new(|| {
App::new()
.service(web::resource("/").to(index))
.service(web::resource("/{name}").to(hello))
})
2019-12-29 02:09:52 +09:00
.bind("127.0.0.1:8088")?
.run()
2019-12-29 02:09:52 +09:00
.await
}
// </request-routing>