fluke/devops-service/providers/connection_factory.rb
2015-10-26 16:20:05 +03:00

14 lines
173 B
Ruby

module Provider
class ConnectionFactory
def init config
end
def connection account_name
@connections[account_name] || @from_config
end
end
end