This commit is contained in:
2026-04-24 17:40:25 +03:30
parent f04a9fe71f
commit 24ed5776bc
16 changed files with 9244 additions and 11 deletions
+4 -1
View File
@@ -1,3 +1,6 @@
from .celery import app as celery_app
try:
from .celery import app as celery_app
except ImportError: # pragma: no cover - fallback for test environments
celery_app = None
__all__ = ("celery_app",)