
- 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
5 lines
206 B
Python
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"] |