summaryrefslogtreecommitdiff
path: root/lib/chef/knife/null.rb
blob: 7221eee9f5a71f2502f99298d69382df10532531 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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