
- Set up project structure with app modules - Configure SQLite database connection - Set up Alembic for database migrations - Implement Item model with CRUD operations - Create API endpoints for items management - Add health check endpoint - Add API documentation - Add comprehensive README
11 lines
270 B
Python
11 lines
270 B
Python
"""
|
|
API routes.
|
|
"""
|
|
from fastapi import APIRouter
|
|
|
|
from app.api.endpoints import health, items
|
|
|
|
api_router = APIRouter()
|
|
|
|
api_router.include_router(health.router, prefix="/health", tags=["health"])
|
|
api_router.include_router(items.router, prefix="/items", tags=["items"]) |