Welcome to mirror list, hosted at ThFree Co, Russian Federation.

terraform_reports.rb « reports « ci « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4b52c25d724ed03fccbbab8b70a7a3a0e10288a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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