fluke/devops-service/providers/connection_factory.rb

14 lines
150 B
Ruby
Raw Normal View History

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