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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
205 B
Ruby
Raw Normal View History

# 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