mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-09 09:58:20 -05:00
14 lines
240 B
Python
14 lines
240 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()
|