
Create a full-featured task management API with the following components: - RESTful CRUD operations for tasks - Task status and priority management - SQLite database with SQLAlchemy ORM - Alembic migrations - Health check endpoint - Comprehensive API documentation
10 lines
294 B
Python
10 lines
294 B
Python
"""
|
|
API router for all endpoints.
|
|
"""
|
|
from fastapi import APIRouter
|
|
|
|
from app.api.api_v1.endpoints import health, tasks
|
|
|
|
api_router = APIRouter()
|
|
api_router.include_router(health.router, prefix="/health", tags=["health"])
|
|
api_router.include_router(tasks.router, prefix="/tasks", tags=["tasks"]) |