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

reports.rb « sbom « reports « ci « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: efb772cb8186239a56b54df4f1db1279a4e66f8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

module Gitlab
  module Ci
    module Reports
      module Sbom
        class Reports
          attr_reader :reports

          def initialize
            @reports = []
          end

          def add_report(report)
            @reports << report
          end
        end
      end
    end
  end
end