mirror of
https://github.com/wahyd4/links.git
synced 2026-08-08 21:04:53 +10:00
9 lines
216 B
Python
9 lines
216 B
Python
import os
|
|
from celery import Celery
|
|
|
|
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'core.settings')
|
|
|
|
app = Celery('core')
|
|
app.config_from_object('django.conf:settings', namespace='CELERY')
|
|
app.autodiscover_tasks()
|