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

sbom.rb « enums « concerns « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 518efa669ad5d937132960093793861d2c2d4016 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module Enums
  class Sbom
    COMPONENT_TYPES = {
      library: 0
    }.with_indifferent_access.freeze

    def self.component_types
      COMPONENT_TYPES
    end
  end
end