django-helpdesk/helpdesk/tasks.py
Martin Whitehouse 25542f929e
Initial isort configuration
Will fail build if imports are not sorted correctly
2022-07-22 03:26:41 +02:00

8 lines
129 B
Python

from .email import process_email
from celery import shared_task
@shared_task
def helpdesk_process_email():
process_email()