MiddlewareNext is a function which is called by a middleware to pass an HTTP request.
type MiddlewareNext = func(*http.Request) (*http.Response, error)MiddlewareNext is a function which is called by a middleware to pass an HTTP request to the next stage in the middleware chain.