module Async::HTTP::Protocol::HTTP2

def self.client(stream, settings = CLIENT_SETTINGS)

def self.client(stream, settings = CLIENT_SETTINGS)
	client = Client.new(stream)
	
	client.send_connection_preface(settings)
	client.start_connection
	
	return client
end