Class: Clients::ProxyClient

Inherits:
Object
  • Object
show all
Defined in:
lib/clients/proxy_client.rb

Class Method Summary collapse

Class Method Details

.from_envObject



7
8
9
10
11
12
# File 'lib/clients/proxy_client.rb', line 7

def self.from_env
  case ENV["CLIENTS_PROXY_CLIENT"]
  when "proxy6" then Proxy6Client.new
  when "list" then ProxyListClient.new
  end
end