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

      def run
      end
    end
  end
end