django-helpdesk/helpdesk/tasks.py
2021-01-31 22:27:37 -03:00

9 lines
129 B
Python

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