14 lines
150 B
Ruby
14 lines
150 B
Ruby
|
|
module Provider
|
||
|
|
class ConnectionFactory
|
||
|
|
|
||
|
|
def init
|
||
|
|
|
||
|
|
end
|
||
|
|
|
||
|
|
def connection account_name
|
||
|
|
@connections[account_name]
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|
||
|
|
|