
- Set up project structure and dependencies - Create database models and schemas for tasks - Implement CRUD operations for tasks - Add API endpoints for task management - Create Alembic migrations for the database - Add health check endpoint - Implement error handling - Add documentation in README.md
8 lines
257 B
Python
8 lines
257 B
Python
from fastapi import APIRouter
|
|
|
|
from app.api.api_v1.endpoints import health, tasks
|
|
|
|
api_router = APIRouter()
|
|
api_router.include_router(tasks.router, prefix="/tasks", tags=["tasks"])
|
|
api_router.include_router(health.router, prefix="/health", tags=["health"])
|