__init__.py 174 B

12345
  1. # This will make sure the app is always imported when
  2. # Django starts so that shared_task will use this app.
  3. from .celery import app as celery_app
  4. __all__ = ('celery_app',)