1
0
Fork 0
mirror of https://github.com/fog/fog-aws.git synced 2022-11-09 13:50:52 -05:00
This commit is contained in:
Josh Lane 2015-01-02 11:37:20 -08:00
parent 6d34488d05
commit 9a3349b602

13
lib/fog/bin/aws.rb Normal file
View file

@ -0,0 +1,13 @@
class AWS < Fog::Bin
def self.class_for(key)
Fog::AWS.class_for(key)
end
def self.[](service)
Fog::AWS[service]
end
def self.services
Fog::AWS.services
end
end