Files
notification/auth/config/celery.py
A'zamov Samandar a4b5833bbe firs commit 🐼
2025-04-19 14:29:36 +05:00

17 lines
304 B
Python

"""
Celery configurations
"""
import os
import celery
from config.env import env
os.environ.setdefault("DJANGO_SETTINGS_MODULE", env("DJANGO_SETTINGS_MODULE"))
app = celery.Celery("config")
app.config_from_object("django.conf:settings", namespace="CELERY")
app.autodiscover_tasks()