From c68463731315b3ac9786d230fd08b981a9452362 Mon Sep 17 00:00:00 2001 From: Songrui <1778280163@qq.com> Date: Fri, 29 May 2026 00:21:33 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=20'java-cli/src/main/java/co?= =?UTF-8?q?m/example/datacollect/command/Command.java'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/example/datacollect/command/Command.java | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 java-cli/src/main/java/com/example/datacollect/command/Command.java diff --git a/java-cli/src/main/java/com/example/datacollect/command/Command.java b/java-cli/src/main/java/com/example/datacollect/command/Command.java deleted file mode 100644 index 24e59a6..0000000 --- a/java-cli/src/main/java/com/example/datacollect/command/Command.java +++ /dev/null @@ -1,9 +0,0 @@ -package com.example.datacollect.command; - -import com.example.datacollect.model.Article; -import java.util.List; - -public interface Command { - String getName(); - void execute(String[] args, List
articles); -}