6 lines
145 B
Python
6 lines
145 B
Python
|
from celery import Celery
|
||
|
|
||
|
app = Celery('righttree')
|
||
|
app.config_from_object('django.conf:settings', namespace='CELERY')
|
||
|
app.autodiscover_tasks()
|