Welcome to mirror list, hosted at ThFree Co, Russian Federation.

component.rb « sbom « reports « ci « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 198b34451b49c8a4a0c0a4b5164b7c20462c8d36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

module Gitlab
  module Ci
    module Reports
      module Sbom
        class Component
          attr_reader :component_type, :name, :version

          def initialize(type:, name:, version:)
            @component_type = type
            @name = name
            @version = version
          end
        end
      end
    end
  end
end