mirror of
https://github.com/bellingcat/whisperbox-transcribe.git
synced 2026-06-11 13:08:35 +03:00
10 lines
193 B
Python
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
|