16 lines
254 B
Python
16 lines
254 B
Python
from django.core.management.base import BaseCommand
|
|
|
|
from paperless_mail import tasks
|
|
|
|
|
|
class Command(BaseCommand):
|
|
|
|
help = """
|
|
""".replace(
|
|
" ", ""
|
|
)
|
|
|
|
def handle(self, *args, **options):
|
|
|
|
tasks.process_mail_accounts()
|