mirror of
https://github.com/bellingcat/whisperbox-transcribe.git
synced 2026-06-08 03:28:35 +03:00
8 lines
128 B
Python
8 lines
128 B
Python
from celery import Celery
|
|
|
|
from .config import settings
|
|
|
|
celery = Celery(__name__)
|
|
|
|
celery.conf.broker_url = settings.REDIS_URI
|