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