mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-06-02 07:55:56 +02:00
8 lines
129 B
Python
8 lines
129 B
Python
from .email import process_email
|
|
from celery import shared_task
|
|
|
|
|
|
@shared_task
|
|
def helpdesk_process_email():
|
|
process_email()
|