package com.crawler.strategy; import com.crawler.model.Article; import java.util.List; public interface CrawlStrategy { List
crawl(String url) throws Exception; String getStrategyName(); }