mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
24 lines
377 B
Ruby
24 lines
377 B
Ruby
|
class Brightbox < Fog::Bin
|
||
|
class << self
|
||
|
|
||
|
def [](service)
|
||
|
@@connections ||= Hash.new do |hash, key|
|
||
|
hash[key] = case key
|
||
|
when :compute
|
||
|
Fog::Brightbox::Compute.new
|
||
|
end
|
||
|
end
|
||
|
@@connections[service]
|
||
|
end
|
||
|
|
||
|
def services
|
||
|
[:compute]
|
||
|
end
|
||
|
|
||
|
def account
|
||
|
@@connections[:compute].account
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|