Extracted 4 endpoint groups into separate sub-router modules:
- health.py: 1 endpoint (GET /health)
- upscale.py: 1 endpoint (POST /upscale)
- control.py: 2 endpoints (POST /control/process, GET /control/operations)
- social.py: 2 endpoints (POST /social/optimize, GET /social/platforms/{platform}/formats)
__init__.py now composes these sub-routers into the legacy router.
All 33 routes preserved. No functional changes.
20 lines
594 B
Python
20 lines
594 B
Python
"""Image Studio API router package.
|
|
|
|
Composed from modular sub-routers. Same prefix and tags as the original monolithic file.
|
|
"""
|
|
|
|
from ..image_studio_router import router as legacy_router
|
|
from .health import router as health_router
|
|
from .upscale import router as upscale_router
|
|
from .control import router as control_router
|
|
from .social import router as social_router
|
|
|
|
legacy_router.include_router(health_router)
|
|
legacy_router.include_router(upscale_router)
|
|
legacy_router.include_router(control_router)
|
|
legacy_router.include_router(social_router)
|
|
|
|
router = legacy_router
|
|
|
|
__all__ = ["router"]
|