renamed django app folder to backend

This commit is contained in:
Simon
2024-08-03 21:58:22 +02:00
parent 1d07386a06
commit a5b492fecd
124 changed files with 2 additions and 2 deletions

7
backend/task/__init__.py Normal file
View File

@@ -0,0 +1,7 @@
"""start celery app"""
from __future__ import absolute_import, unicode_literals
from task.celery import app as celery_app
__all__ = ("celery_app",)