fluke/devops-service/db/mongo/models/stack/stack_openstack.rb

12 lines
217 B
Ruby
Raw Normal View History

2015-11-03 11:46:54 +03:00
require 'db/mongo/models/stack/stack_base'
2015-03-06 12:20:30 +03:00
module Devops
module Model
class StackOpenstack < StackBase
2016-02-24 21:26:44 +03:00
def initialize attrs={}
super
2015-08-04 12:40:08 +03:00
self.provider = 'openstack'
end
2015-03-06 12:20:30 +03:00
end
end
2015-02-12 13:01:05 +03:00
end