7 lines
157 B
Python
7 lines
157 B
Python
# Django configuration module
|
|
|
|
# Import Celery app to ensure it's loaded when Django starts
|
|
from .celery import app as celery_app
|
|
|
|
__all__ = ('celery_app',)
|