1
0
mirror of https://github.com/actix/actix-website synced 2024-11-30 11:12:57 +01:00
actix-website/examples/url-dispatch/src/norm.rs
2022-02-26 03:56:24 +00:00

24 lines
478 B
Rust

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