Files
octopus/myproject/myproject/__init__.py

8 lines
153 B
Python

"""
Celery configuration.
This ensures the Celery app is loaded when Django starts.
"""
from .celery import app as celery_app
__all__ = ('celery_app',)