mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-01-05 21:49:24 +01:00
9 lines
130 B
Python
9 lines
130 B
Python
from celery import shared_task
|
|
|
|
from .email import process_email
|
|
|
|
|
|
@shared_task
|
|
def helpdesk_process_email():
|
|
process_email()
|