module Async::HTTP::Protocol::HTTP

def self.client(peer, **options)

Outbound connections default to HTTP1.
Only inbound connections can detect HTTP1 vs HTTP2 for http://.
def self.client(peer, **options)
	HTTP1.client(peer, **options)
end