mirror of
https://github.com/lorsanstand/Aether.git
synced 2026-09-18 14:18:20 +03:00
11 lines
211 B
Python
11 lines
211 B
Python
from celery import Celery
|
|
|
|
from app.config import settings
|
|
|
|
celery_app = Celery(
|
|
"app.utils.celery_app",
|
|
broker=settings.RABBITMQ_URL,
|
|
backend="rpc://"
|
|
)
|
|
|
|
celery_app.autodiscover_tasks(["app.tasks"]) |