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

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