mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-08-16 00:36:22 +00:00
17 lines
263 B
Python
17 lines
263 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()
|