diff --git a/w10/Command.java b/w10/Command.java deleted file mode 100644 index 27a2c70..0000000 --- a/w10/Command.java +++ /dev/null @@ -1,8 +0,0 @@ -package com.example.datacollect.command; - -import com.example.datacollect.repository.ArticleRepository; - -public interface Command { - String getName(); - void execute(String[] args, ArticleRepository repository); -}