1
0
mirror of https://github.com/actix/actix-website synced 2024-11-25 09:12:42 +01:00
actix-website/examples/middleware/src/wrap_fn.rs

21 lines
487 B
Rust
Raw Normal View History

// <wrap-fn>
use actix_service::Service;
use actix_web::{web, App};
use futures::future::Future;
fn main() {
let app = App::new()
.wrap_fn(|req, srv| {
println!("Hi from start. You requested: {}", req.path());
srv.call(req).map(|res| {
println!("Hi from response");
res
})
})
.route(
"/index.html",
web::get().to(|| "Hello, middleware!"),
);
}
// </wrap-fn>