class Falcon::Command::Serve

def load_app

@returns [Protocol::HTTP::Middleware]
Load the rack application from the specified configuration path.
def load_app
	rack_app, _ = Rack::Builder.parse_file(@options[:config])
	
	return Server.middleware(rack_app, verbose: self.verbose?, cache: self.cache?)
end