__init__.py 231 B

1234567
  1. from __future__ import absolute_import, unicode_literals
  2. # This will make sure the app is always imported when
  3. # Django starts so that shared_task will use this app.
  4. from .celery import app as celery_app
  5. __all__ = ['celery_app']