tubearchivist/tubearchivist/home/__init__.py

8 lines
151 B
Python
Raw Permalink Normal View History

"""start celery app"""
2021-09-05 17:10:14 +00:00
from __future__ import absolute_import, unicode_literals
from home.celery import app as celery_app
2021-09-05 17:10:14 +00:00
2021-09-21 09:25:22 +00:00
__all__ = ("celery_app",)