mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
20 lines
309 B
Ruby
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
|