
- 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
153 B
Python
5 lines
153 B
Python
from .customer import Customer
|
|
from .driver import Driver
|
|
from .order import Order, OrderStatus
|
|
|
|
__all__ = ["Customer", "Driver", "Order", "OrderStatus"] |