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); -}