1
0
mirror of https://github.com/actix/actix-website synced 2025-07-02 17:44:35 +02:00
Files
actix-website/examples/url-dispatch/src/norm.rs
2019-12-29 04:10:02 +09:00

22 lines
441 B
Rust

// <norm>
use actix_web::{middleware, HttpResponse};
async fn index() -> HttpResponse {
HttpResponse::Ok().body("Hello")
}
#[actix_rt::main]
async fn main() -> std::io::Result<()> {
use actix_web::{web, App, HttpServer};
HttpServer::new(|| {
App::new()
.wrap(middleware::NormalizePath)
.route("/resource/", web::to(index))
})
.bind("127.0.0.1:8088")?
.run()
.await
}
// </norm>