···44import app/web
5566pub fn handle_request(req: Request) -> Response {
77- use _req <- web.middleware(req)
77+ use req <- web.middleware(req)
8899 // Wisp doesn't have a special router abstraction, instead we recommend using
1010 // regular old pattern matching. This is faster than a router, is type safe,