summaryrefslogtreecommitdiff
path: root/lib/chef/platform/resource_priority_map.rb
blob: 5cc86fd2e7d89c7df69a9c8bd8122916e2b070a9 (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 ResourcePriorityMap < Chef::Platform::PriorityMap
      include Singleton
    end
  end
end