package command; import model.CrawlResult; import exception.CrawlerException; import java.util.List; public interface Command { List execute() throws CrawlerException; String getName(); }