3f9f816a7e
- backend changes
5 lines
145 B
Python
5 lines
145 B
Python
from celery import Celery
|
|
|
|
app = Celery('righttree')
|
|
app.config_from_object('django.conf:settings', namespace='CELERY')
|
|
app.autodiscover_tasks()
|