summaryrefslogtreecommitdiff
path: root/lib/chef/platform/resource_priority_map.rb
blob: 1871dcd5c65bb403427c9e0dbda14b330dda0d57 (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