18 lines
308 B
Ruby
18 lines
308 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module Ci
|
|
module Reports
|
|
module Sbom
|
|
class Source
|
|
attr_reader :source_type, :data
|
|
|
|
def initialize(type:, data:)
|
|
@source_type = type
|
|
@data = data
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|