class Protocol::HTTP::Middleware::Builder

def initialize(default_app = NotFound)

@parameter default_app [Object] The default application to use if no middleware is specified.

Initialize the builder with the given default application.
def initialize(default_app = NotFound)
	@use = []
	@app = default_app
end