
This commit includes: - Basic project structure with FastAPI - SQLite database integration using SQLAlchemy - CRUD API for items - Alembic migrations setup - Health check endpoint - Proper error handling - Updated README with setup instructions
7 lines
159 B
Python
7 lines
159 B
Python
from fastapi import APIRouter
|
|
|
|
from app.api.v1 import items
|
|
|
|
api_router = APIRouter()
|
|
|
|
api_router.include_router(items.router, prefix="/items", tags=["Items"]) |