tuklascope-api / app /api /v1 /api_router.py
github-actions[bot]
Auto-deploy backend from GitHub Actions
2f5bcd1
Raw
History Blame Contribute Delete
561 Bytes
from fastapi import APIRouter
from app.api.v1.endpoints import discover, learn, pathfinder, chat, pathways
api_router = APIRouter()
api_router.include_router(discover.router, prefix="/discover", tags=["Discovery"])
api_router.include_router(chat.router, prefix="/chat", tags=["Tutor API"])
api_router.include_router(
pathfinder.router, prefix="/pathfinder", tags=["Pathfinder Engine"]
)
api_router.include_router(learn.router, prefix="/learn", tags=["Learning Cards"])
api_router.include_router(pathways.router, prefix="/pathways", tags=["pathways"])