Files
edx-platform/lms/__init__.py
2015-05-08 09:01:50 -04:00

10 lines
306 B
Python

"""
Celery needs to be loaded when the cms modules are so that task
registration and discovery can work correctly.
"""
from __future__ import absolute_import
# This will make sure the app is always imported when
# Django starts so that shared_task will use this app.
from .celery import APP as CELERY_APP