2014-12-22 14:22:04 +03:00
|
|
|
require "commands/bootstrap_templates"
|
2015-07-30 15:37:43 +03:00
|
|
|
require "app/api2/parsers/bootstrap_template"
|
|
|
|
|
require_relative "request_handler"
|
2014-12-22 14:22:04 +03:00
|
|
|
|
|
|
|
|
module Devops
|
2015-07-17 20:22:29 +03:00
|
|
|
module API2_0
|
2014-12-22 14:22:04 +03:00
|
|
|
module Handler
|
2015-07-30 15:37:43 +03:00
|
|
|
class BootstrapTemplates < RequestHandler
|
|
|
|
|
|
|
|
|
|
set_parser Devops::API2_0::Parser::BootstrapTemplateParser
|
2014-12-22 14:22:04 +03:00
|
|
|
|
2015-07-17 20:22:29 +03:00
|
|
|
include BootstrapTemplatesCommands
|
|
|
|
|
|
2014-12-22 14:22:04 +03:00
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|