class Falcon::ProxyEndpoint

def each

@parameter endpoint [ProxyEndpoint]
@yields {|endpoint| ...}
If the endpoint has multiple underlying endpoints, this will enumerate them individually.
Enumerate the endpoint.
def each
	return to_enum unless block_given?
	
	@endpoint.each do |endpoint|
		yield self.class.new(endpoint, **@options)
	end
end