Files
whisperbox-transcribe/app/shared/celery.py
2023-01-28 12:30:02 +01:00

10 lines
200 B
Python

from celery import Celery
from app.shared.config import settings
def get_celery_binding() -> Celery:
celery = Celery("tasks")
celery.conf.broker_url = settings.BROKER_URL
return celery