15 lines
181 B
Ruby
15 lines
181 B
Ruby
module Provider
|
|
class AccountsFactory
|
|
|
|
def init config
|
|
|
|
end
|
|
|
|
# providers instances
|
|
def connection account_name
|
|
@connections[account_name]
|
|
end
|
|
end
|
|
end
|
|
|