8 lines
322 B
Python
8 lines
322 B
Python
from .clinics import router as clinics_router
|
|
from .analyses import router as analyses_router
|
|
from .reports import router as reports_router
|
|
from .plans import router as plans_router
|
|
from .channels import router as channels_router
|
|
|
|
routers = [clinics_router, analyses_router, reports_router, plans_router, channels_router]
|