# Functions
No description provided by the author
AuthorizeMiddleware creates an authorization middleware to respond based on the result of an authorization sequence If using gorilla mux router, this middleware will only hit when a route is matched
This is because gorilla matches a route, *then* runs the full chain of middlewares + handler
Because of this, this makes mux.Vars(r) available to use to grab path parameters that gorilla parsed.