debian-mirror-gitlab/lib/gitlab/ci/reports/terraform_reports.rb
2020-06-23 00:09:42 +05:30

20 lines
293 B
Ruby

# frozen_string_literal: true
module Gitlab
module Ci
module Reports
class TerraformReports
attr_reader :plans
def initialize
@plans = {}
end
def add_plan(name, plan)
plans[name] = plan
end
end
end
end
end