From c7476b5bc787132759020884ced4c4d1d6a54f22 Mon Sep 17 00:00:00 2001 From: fanxinyao <3603458499@qq.com> Date: Tue, 26 May 2026 15:30:55 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=8A=E4=BC=A0=E6=96=87=E4=BB=B6=E8=87=B3?= =?UTF-8?q?=20'w10'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- w10/Command.java | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 w10/Command.java diff --git a/w10/Command.java b/w10/Command.java new file mode 100644 index 0000000..27a2c70 --- /dev/null +++ b/w10/Command.java @@ -0,0 +1,8 @@ +package com.example.datacollect.command; + +import com.example.datacollect.repository.ArticleRepository; + +public interface Command { + String getName(); + void execute(String[] args, ArticleRepository repository); +}