7 lines
154 B
Python
7 lines
154 B
Python
|
|
# Config app
|
||
|
|
|
||
|
|
# This will make sure the Celery app is always imported when Django starts
|
||
|
|
from .celery import app as celery_app
|
||
|
|
|
||
|
|
__all__ = ('celery_app',)
|