File size: 352 Bytes
8eaa451 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | """
DeepMed-AI — api/v1/api.py
Router aggregator: collects all v1 endpoint routers into one.
"""
from fastapi import APIRouter
from app.api.v1.endpoints import chat, health, session
api_router = APIRouter(prefix="/api/v1")
api_router.include_router(health.router)
api_router.include_router(chat.router)
api_router.include_router(session.router)
|