# frozen_string_literal: true

require "clamp"

module Makit
  module Cli
    # Define the 'new' subcommand
    class CleanCommand < Clamp::Command
      def execute
        puts "TODO: implement clean command"
      end
    end
  end
end