module Falcon::Environment::Application

def endpoint

@returns [Async::IO::Endpoint]
The endpoint that will be used for communicating with the application server.
def endpoint
	::Falcon::ProxyEndpoint.unix(ipc_path,
		protocol: protocol,
		scheme: scheme,
		authority: authority
	)
end