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
153 B
Python

from .customer import Customer
from .driver import Driver
from .order import Order, OrderStatus
__all__ = ["Customer", "Driver", "Order", "OrderStatus"]