File size: 613 Bytes
a927fa4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
"""

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()