class Async::HTTP::Response

def self.[](status, headers = {}, body = [])

def self.[](status, headers = {}, body = [])
	body = Body::Buffered.wrap(body)
	
	self.new(nil, status, nil, headers, body)
end