
- Set up project structure - Configure SQLite database with SQLAlchemy - Create item model and schema - Set up Alembic for database migrations - Implement CRUD operations for items - Add health check endpoint - Add API documentation - Configure Ruff for linting - Update README with project information
6 lines
165 B
Python
6 lines
165 B
Python
from fastapi import APIRouter
|
|
|
|
from app.api.endpoints import items
|
|
|
|
api_router = APIRouter()
|
|
api_router.include_router(items.router, prefix="/items", tags=["items"]) |