
- Set up project structure with FastAPI - Create SQLite database with SQLAlchemy - Implement Alembic for database migrations - Add CRUD operations for items resource - Create health endpoint - Update documentation generated with BackendIM... (backend.im)
5 lines
156 B
Python
5 lines
156 B
Python
from fastapi import APIRouter
|
|
from app.api.endpoints import items
|
|
|
|
router = APIRouter()
|
|
router.include_router(items.router, prefix="/items", tags=["items"]) |