mirror of
https://github.com/RYDE-WORK/full-stack-fastapi-template.git
synced 2026-01-19 21:23:36 +08:00
6 lines
160 B
Python
6 lines
160 B
Python
from celery import Celery
|
|
|
|
celery_app = Celery("worker", broker="amqp://guest@queue//")
|
|
|
|
celery_app.conf.task_routes = {"app.worker.test_celery": "main-queue"}
|