Files
plane/notifier/engine/celery.py
2024-08-02 19:46:36 +05:30

5 lines
118 B
Python

from celery import Celery
from .settings import settings
celery = Celery("tasks", broker=settings.CELERY_BROKER_URL)