Spaces:
Sleeping
Sleeping
| """ | |
| Package initializer for DocImageAI Explorer API | |
| This empty file serves two crucial purposes: | |
| 1. Marks the 'app' directory as a Python package | |
| 2. Allows relative imports between modules | |
| """ | |
| # Version of the application | |
| __version__ = "1.0.0" | |
| # List of what gets imported with 'from app import *' | |
| __all__ = [ | |
| 'main', # Main FastAPI application | |
| 'models', # Pydantic models | |
| 'utils' # Utility functions | |
| ] | |
| # Optional initialization code | |
| def init_app(): | |
| """Initialize application components""" | |
| pass | |
| # Run initialization when package is imported | |
| init_app() |