gitlab-org--gitlab-foss/lib/gitlab/ci/reports/terraform_reports.rb

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