django-helpdeskmig/helpdesk/tasks.py

9 lines
118 B
Python
Raw Normal View History

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