Remove old commands

This commit is contained in:
Sonny Bakker 2020-09-30 23:00:37 +02:00
parent d80c52473c
commit b183612a36
2 changed files with 0 additions and 22 deletions

View file

@ -1,11 +0,0 @@
from django.core.management.base import BaseCommand
from newsreader.news.collection.feed import FeedCollector
class Command(BaseCommand):
help = "Collects Atom/RSS feeds"
def handle(self, *args, **options):
collector = FeedCollector()
collector.collect()

View file

@ -1,11 +0,0 @@
from django.core.management.base import BaseCommand
from newsreader.news.collection.favicon import FaviconCollector
class Command(BaseCommand):
help = "Fetch favicons for collection rules"
def handle(self, *args, **options):
collector = FaviconCollector()
collector.collect()