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
214 B
Python
6 lines
214 B
Python
# Re-export from original routers.
|
|
from app.api.routers.orders import router as orders_router
|
|
from app.api.routers.order_items import router as order_items_router
|
|
|
|
__all__ = ["orders_router", "order_items_router"]
|