1
0
mirror of https://github.com/actix/actix-website synced 2025-02-02 12:19:04 +01:00

21 lines
518 B
Rust
Raw Normal View History

// <main-example>
use actix_web::{web, App, HttpRequest, HttpServer, Responder};
2019-12-29 01:38:51 +09:00
async fn greet(req: HttpRequest) -> impl Responder {
let name = req.match_info().get("name").unwrap_or("World");
format!("Hello {}!", &name)
}
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<()> {
HttpServer::new(|| {
App::new()
2019-06-19 14:24:31 -04:00
.route("/", web::get().to(greet))
.route("/{name}", web::get().to(greet))
})
2022-02-26 03:56:24 +00:00
.bind(("127.0.0.1", 8080))?
.run()
2019-12-29 01:38:51 +09:00
.await
}
// </main-example>