module Falcon::Environment::Server

def endpoint

@returns [Async::HTTP::Endpoint]
The upstream endpoint that will handle incoming requests.
def endpoint
	::Async::HTTP::Endpoint.parse(url).with(
		reuse_address: true,
		timeout: timeout,
	)
end