Remove dummy crawler

This commit is contained in:
Joscha
2021-05-10 23:47:46 +02:00
parent cec0a8e1fc
commit 595ba8b7ab
2 changed files with 0 additions and 61 deletions

View File

@ -3,10 +3,8 @@ from typing import Callable, Dict
from ..config import Config
from ..crawler import Crawler, CrawlerSection
from .dummy import DummyCrawler
from .local import LocalCrawler, LocalCrawlerSection
CRAWLERS: Dict[str, Callable[[str, Config, SectionProxy], Crawler]] = {
"dummy": lambda n, c, s: DummyCrawler(n, c, CrawlerSection(s)),
"local": lambda n, c, s: LocalCrawler(n, c, LocalCrawlerSection(s)),
}