summaryrefslogtreecommitdiff
path: root/lib/chef/platform/provider_priority_map.rb
blob: 5599c74c2d7ef618adf6a6fbb8973064cb5a8e69 (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