debian-mirror-gitlab/lib/gitlab/ci/reports/sbom/reports.rb
2022-08-27 11:52:29 +05:30

21 lines
332 B
Ruby

# 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