fluke/devops-service/db/mongo/models/stack/stack_openstack.rb
2016-02-24 21:26:44 +03:00

12 lines
217 B
Ruby

require 'db/mongo/models/stack/stack_base'
module Devops
module Model
class StackOpenstack < StackBase
def initialize attrs={}
super
self.provider = 'openstack'
end
end
end
end