django-helpdesk/helpdesk/tasks.py
2021-11-19 00:30:20 -05:00

9 lines
130 B
Python

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