class Falcon::Rackup::Handler

def self.endpoint_for(**options)

@returns [::IO::Endpoint::HostEndpoint]
Generate an endpoint for the given `rackup` options.
def self.endpoint_for(**options)
	host = options[:Host] || "localhost"
	port = Integer(options[:Port] || 9292)
	
	return ::IO::Endpoint.tcp(host, port)
end