From f0ef36bc5664823d580d5d265428b505732a63bc Mon Sep 17 00:00:00 2001 From: Songrui <1778280163@qq.com> Date: Fri, 29 May 2026 01:41:30 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=20'src/main/java/com/example?= =?UTF-8?q?/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 src/main/java/com/example/datacollect/command/Command.java diff --git a/src/main/java/com/example/datacollect/command/Command.java b/src/main/java/com/example/datacollect/command/Command.java deleted file mode 100644 index 24e59a6..0000000 --- a/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); -}