14 lines
196 B
Ruby
14 lines
196 B
Ruby
require_relative "connection_factory"
|
|
module Provider
|
|
class Ec2ConnectionFactory < ConnectionFactory
|
|
|
|
def init
|
|
|
|
end
|
|
|
|
def connection account_name
|
|
@connections
|
|
end
|
|
end
|
|
end
|