module Protocol::HTTP::Middleware::Okay

def self.call(request)

@returns [Response] The response object, which always contains a 200 status code.
@parameter request [Request] The request object.

Call the middleware with the given request, always returning a 200 response.
def self.call(request)
	Response[200]
end

def self.close

Close the middleware - idempotent no-op.
def self.close
end