Files
whisperbox-transcribe/app/shared/celery.py
2023-01-28 13:41:38 +01:00

10 lines
193 B
Python

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