mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-23 16:33:11 +08:00
5 lines
160 B
Python
5 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"}
|