debian-mirror-gitlab/lib/gitlab/ci/reports/sbom/source.rb
2022-10-11 01:57:18 +05:30

19 lines
375 B
Ruby

# frozen_string_literal: true
module Gitlab
module Ci
module Reports
module Sbom
class Source
attr_reader :source_type, :data, :fingerprint
def initialize(type:, data:, fingerprint:)
@source_type = type
@data = data
@fingerprint = fingerprint
end
end
end
end
end
end