tubearchivist/tubearchivist/home/__init__.py

6 lines
95 B
Python
Raw Normal View History

""" handle celery startup """
2021-09-05 17:10:14 +00:00
from .tasks import app as celery_app
2021-09-21 09:25:22 +00:00
__all__ = ("celery_app",)