right-tree/backend/right_tree/api/celery.py
Matthew Northcott 3f9f816a7e [#40] Bulk PDF export
- backend changes
2023-02-22 15:08:30 +13:00

5 lines
145 B
Python

from celery import Celery
app = Celery('righttree')
app.config_from_object('django.conf:settings', namespace='CELERY')
app.autodiscover_tasks()