mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2024-12-13 10:21:05 +01:00
9 lines
129 B
Python
9 lines
129 B
Python
from celery.decorators import task
|
|
|
|
from .email import process_email
|
|
|
|
|
|
@task()
|
|
def helpdesk_process_email():
|
|
process_email()
|