mirror of
https://github.com/suitenumerique/docs.git
synced 2026-09-17 23:28:01 +02:00
Library we are using can have celery shared task. We have to make some modification to load them earlier when the celery app is configure and when the impress app is loaded.
6 lines
159 B
Python
6 lines
159 B
Python
"""Impress package. Import the celery app early to load shared task form dependencies."""
|
|
|
|
from .celery_app import app as celery_app
|
|
|
|
__all__ = ["celery_app"]
|