From 798c0d962e3be0e1911ff31a48722eb11918c39f Mon Sep 17 00:00:00 2001 From: "H.shokhmgar86" Date: Mon, 10 Aug 2026 17:56:07 +0330 Subject: [PATCH] feat: initialize Celery app in config package for shared task support --- config/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/__init__.py b/config/__init__.py index b5a50bd..a9ef1ea 100644 --- a/config/__init__.py +++ b/config/__init__.py @@ -5,4 +5,4 @@ from __future__ import absolute_import, unicode_literals # Django starts so that shared_task will use this app. from .celery import app as celery_app -__all__ = ('celery_app',) \ No newline at end of file +__all__ = ('celery_app',)