Automated Action b3827bf6b3 Add complete FastAPI delivery business backend
- Created customer, driver, and order models with SQLAlchemy
- Implemented CRUD API endpoints for all entities
- Set up SQLite database with Alembic migrations
- Added health check and base URL endpoints
- Configured CORS middleware for all origins
- Updated README with comprehensive documentation
2025-06-27 09:19:00 +00:00

5 lines
206 B
Python

from .customers import router as customers_router
from .drivers import router as drivers_router
from .orders import router as orders_router
__all__ = ["customers_router", "drivers_router", "orders_router"]