summaryrefslogtreecommitdiff
path: root/app/models/concerns/enums/sbom.rb
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