CPS-API / api /routes.py
Ali2206's picture
Update api/routes.py
8db2f16 verified
raw
history blame
325 Bytes
from fastapi import APIRouter
from .routes import auth, patients, pdf
router = APIRouter()
# Include sub-routers
router.include_router(auth.router, prefix="/auth", tags=["auth"])
router.include_router(patients.router, prefix="/ehr", tags=["patients"])
router.include_router(pdf.router, prefix="/ehr/patients", tags=["pdf"])