b87df4a3e5
Move all models/schemas/services/routers into app/domains/. Keep backward-compat shims in old locations for imports. Preserves domains/rendering/tasks.py from Phase A. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
6 lines
211 B
Python
6 lines
211 B
Python
# Re-export from original routers.
|
|
from app.api.routers.uploads import router as uploads_router
|
|
from app.api.routers.templates import router as templates_router
|
|
|
|
__all__ = ["uploads_router", "templates_router"]
|