Files
whisperbox-transcribe/app/shared/celery.py
2023-02-08 16:23:51 +01:00

10 lines
195 B
Python

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