2015-10-26 12:04:01 +03:00
|
|
|
module Provider
|
2015-10-26 17:14:48 +03:00
|
|
|
class AccountsFactory
|
2015-10-26 12:04:01 +03:00
|
|
|
|
2015-10-26 16:20:05 +03:00
|
|
|
def init config
|
2015-10-26 12:04:01 +03:00
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
2015-10-26 17:14:48 +03:00
|
|
|
# providers instances
|
2015-10-26 12:04:01 +03:00
|
|
|
def connection account_name
|
2015-10-26 17:14:48 +03:00
|
|
|
@connections[account_name]
|
2015-10-26 12:04:01 +03:00
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|