fluke/devops-service/providers/ec2_connection_factory.rb

14 lines
196 B
Ruby
Raw Normal View History

require_relative "connection_factory"
module Provider
class Ec2ConnectionFactory < ConnectionFactory
def init
end
def connection account_name
@connections
end
end
end