Files
xiaoxia-saas/apps/api/app/core/celery_app.py
T
2026-06-21 06:52:19 +08:00

8 lines
249 B
Python

from app.config import get_settings
from celery import Celery
settings = get_settings()
celery_app = Celery("xiaoxia-saas-api")
celery_app.conf.broker_url = settings.CELERY_BROKER_URL
celery_app.conf.result_backend = settings.CELERY_RESULT_BACKEND