debian-mirror-gitlab/lib/gitlab/ci/reports/sbom/source.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
308 B
Ruby
Raw Normal View History

2022-08-27 11:52:29 +05:30
# frozen_string_literal: true
module Gitlab
module Ci
module Reports
module Sbom
class Source
2022-11-25 23:54:43 +05:30
attr_reader :source_type, :data
2022-08-27 11:52:29 +05:30
2022-11-25 23:54:43 +05:30
def initialize(type:, data:)
2022-10-11 01:57:18 +05:30
@source_type = type
@data = data
2022-08-27 11:52:29 +05:30
end
end
end
end
end
end