mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2025-02-10 15:29:49 +01: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()
|