7 lines
232 B
Python
7 lines
232 B
Python
# backend_flask/__init__.py
|
|
# This file makes backend_flask a Python package, allowing imports like:
|
|
# from backend_flask.celery_worker.celery_app import async_task
|
|
|
|
# Ensure the package is properly recognized
|
|
__version__ = "1.0.0"
|