
- Set up project structure and dependencies - Create database models with SQLAlchemy - Implement API endpoints for CRUD operations - Set up Alembic for database migrations - Add health check endpoint - Configure Ruff for linting - Update documentation in README
7 lines
169 B
Python
7 lines
169 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"])
|