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

22 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