summaryrefslogtreecommitdiff
path: root/lib/chef/platform/provider_priority_map.rb
blob: 4507c7783344e92cf890fb9ca2f3dcf64f05bc33 (plain)
1
2
3
4
5
6
7
8
9
10
11
require "singleton" unless defined?(Singleton)
require_relative "priority_map"

class Chef
  class Platform
    # @api private
    class ProviderPriorityMap < Chef::Platform::PriorityMap
      include Singleton
    end
  end
end