mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-25 17:33:08 +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()
|