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/google/bin.rb
2010-09-24 13:14:57 -07:00

20 lines
309 B
Ruby

class Google < Fog::Bin
class << self
def [](service)
@@connections ||= Hash.new do |hash, key|
hash[key] = case key
when :storage
Fog::Google::Storage.new
end
end
@@connections[service]
end
def services
[:storage]
end
end
end