gitlab-org--gitlab-foss/app/models/concerns/enums/sbom.rb

14 lines
205 B
Ruby

# 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