o2o-infinith-backend/app/api/__init__.py

7 lines
257 B
Python

from .clinics import router as clinics_router
from .analysis import router as analysis_router
from .reports import router as reports_router
from .plans import router as plans_router
routers = [clinics_router, analysis_router, reports_router, plans_router]