2020-02-26 22:15:22 +00:00
|
|
|
from __future__ import absolute_import, unicode_literals
|
|
|
|
|
|
|
|
# This will make sure the app is always imported when
|
|
|
|
# Django starts so that shared_task will use this app.
|
2020-02-27 22:32:59 +00:00
|
|
|
from .celery_module import app as celery_app
|
2020-02-26 22:15:22 +00:00
|
|
|
|
|
|
|
__all__ = ('celery_app',)
|
|
|
|
|