module Protocol::HTTP::Middleware::HelloWorld
def self.call(request)
@parameter request [Request] The request object.
Call the middleware with the given request.
def self.call(request) Response[200, Headers["content-type" => "text/plain"], ["Hello World!"]] end
def self.close
def self.close end