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/vcloudng/models/compute/tasks.rb
Rodrigo Estebanez 60e8a5ec2a many changes...
2013-06-20 19:36:34 +02:00

21 lines
No EOL
304 B
Ruby

require 'fog/core/collection'
require 'fog/vcloudng/models/compute/task'
module Fog
module Compute
class Vcloudng
class Tasks < Fog::Collection
model Fog::Compute::Vcloudng::Task
def all
end
end
end
end
end