
- Set up FastAPI project structure with best practices - Implemented SQLAlchemy models with SQLite database - Added Alembic for database migrations - Created CRUD API endpoints for items - Added health check endpoint - Updated documentation generated with BackendIM... (backend.im)
7 lines
174 B
Python
7 lines
174 B
Python
from fastapi import APIRouter
|
|
from app.api.endpoints import health, items
|
|
|
|
api_router = APIRouter()
|
|
|
|
# Include routers
|
|
api_router.include_router(items.router, tags=["Items"]) |