summaryrefslogtreecommitdiff
path: root/lib/chef/platform/provider_priority_map.rb
blob: 0c8a728618d84726233cd3d258145b9a51f83b86 (plain)
1
2
3
4
5
6
7
8
9
10
11
require "singleton"
require "chef/platform/priority_map"

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