Files
Ai/config/__init__.py
T

7 lines
169 B
Python
Raw Normal View History

2026-04-24 17:40:25 +03:30
try:
from .celery import app as celery_app
except ImportError: # pragma: no cover - fallback for test environments
celery_app = None
__all__ = ("celery_app",)