1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/brightbox/bin.rb

23 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