secure-web/backend/core/__init__.py

10 lines
175 B
Python

"""
Core module initialization.
This module loads the Celery app so that shared_task will use this app.
"""
from .celery import app as celery_app
__all__ = ('celery_app',)