
- Set up project structure with FastAPI app - Implement items CRUD API endpoints - Configure SQLite database with SQLAlchemy - Set up Alembic migrations - Add health check endpoint - Enable CORS middleware - Create README with documentation
5 lines
167 B
Python
5 lines
167 B
Python
from fastapi import APIRouter
|
|
from app.api.v1.endpoints import items
|
|
|
|
api_router = APIRouter()
|
|
api_router.include_router(items.router, prefix="/items", tags=["items"]) |