8 lines
249 B
Python
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
|