Automated Action a0217b10ac Initial project setup for food delivery API
- Set up project structure and FastAPI application
- Create configuration and security modules
- Add API routers and endpoint placeholders
- Add health check endpoint
- Update README.md with project details
2025-05-31 03:38:55 +00:00

12 lines
643 B
Python

from fastapi import APIRouter
from app.api.v1.endpoints import users, auth, restaurants, menu_items, orders, deliveries
api_router = APIRouter()
api_router.include_router(auth.router, prefix="/auth", tags=["Authentication"])
api_router.include_router(users.router, prefix="/users", tags=["Users"])
api_router.include_router(restaurants.router, prefix="/restaurants", tags=["Restaurants"])
api_router.include_router(menu_items.router, prefix="/menu-items", tags=["Menu Items"])
api_router.include_router(orders.router, prefix="/orders", tags=["Orders"])
api_router.include_router(deliveries.router, prefix="/deliveries", tags=["Deliveries"])