aigenrec/luminabackend
0
1from fastapi import APIRouter
2from api.v1.endpoints import auth, chat, documents, mcq, evaluation, projects, notes
3
4api_router = APIRouter()
5
6api_router.include_router(auth.router, prefix="/auth", tags=["auth"])
7api_router.include_router(projects.router, prefix="/projects", tags=["projects"])
8api_router.include_router(documents.router, prefix="/documents", tags=["documents"])
9api_router.include_router(chat.router, prefix="/chat", tags=["chat"])
10api_router.include_router(mcq.router, prefix="/mcq", tags=["mcq"])
11api_router.include_router(evaluation.router, prefix="/evaluation", tags=["evaluation"])
12api_router.include_router(notes.router, prefix="/notes", tags=["notes"])
13 