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/serverlove/requests/compute/get_drives.rb

13 lines
208 B
Ruby
Raw Normal View History

2012-04-27 07:11:33 -04:00
module Fog
module Compute
class Serverlove
class Real
def get_drives
2012-04-27 07:21:39 -04:00
request(:method => "get", :path => "/drives/list", :expects => 200)
2012-04-27 07:11:33 -04:00
end
end
end
end
end