You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
510 B
14 lines
510 B
import controller.CrawlerController;
|
|
import view.ConsoleView;
|
|
import repository.PaperRepository;
|
|
import strategy.StrategyFactory;
|
|
|
|
public class Main {
|
|
public static void main(String[] args) {
|
|
ConsoleView view = new ConsoleView();
|
|
PaperRepository repository = new PaperRepository();
|
|
StrategyFactory strategyFactory = new StrategyFactory();
|
|
CrawlerController controller = new CrawlerController(view, repository, strategyFactory);
|
|
controller.run();
|
|
}
|
|
}
|