summaryrefslogtreecommitdiff
path: root/lib/chef/knife/null.rb
blob: d3abbea4e925546ca03873bc8dcd0b0d0f06086d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class Chef
  class Knife
    class Null < Chef::Knife
      banner "knife null"

      # setting the category to deprecated keeps it out of help
      category "deprecated"

      def run
      end
    end
  end
end