summaryrefslogtreecommitdiff
path: root/lib/chef/platform/resource_handler_map.rb
blob: 532d4ff656dffbc0858c8066def4547192b712e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
require 'singleton'
require 'chef/platform/handler_map'

class Chef
  class Platform
    # @api private
    class ResourceHandlerMap < Chef::Platform::HandlerMap
      include Singleton
    end
  end
end