mirror of
https://github.com/viq/NewsBlur.git
synced 2025-08-05 16:49:45 +00:00
8 lines
No EOL
236 B
Python
8 lines
No EOL
236 B
Python
from django.core.management.base import BaseCommand
|
|
from apps.rss_feeds.tasks import BackupMongo
|
|
|
|
class Command(BaseCommand):
|
|
option_list = BaseCommand.option_list
|
|
|
|
def handle(self, *args, **options):
|
|
BackupMongo.apply() |