8 lines
250 B
Python
8 lines
250 B
Python
from fastapi import APIRouter
|
|
|
|
from app.api.endpoints import tasks, health
|
|
|
|
api_router = APIRouter()
|
|
|
|
api_router.include_router(health.router, prefix="/health", tags=["health"])
|
|
api_router.include_router(tasks.router, prefix="/tasks", tags=["tasks"]) |