service_man/api/app_builder/routers.py

9 lines
219 B
Python
Raw Normal View History

2024-03-31 00:58:43 +03:00
from fastapi import FastAPI
2024-03-31 01:36:57 +03:00
from api.presentation.routers import healthcheck_router, user_router
2024-03-31 00:58:43 +03:00
def init_routers(app: FastAPI) -> None:
2024-03-31 01:36:57 +03:00
app.include_router(user_router)
2024-03-31 00:58:43 +03:00
app.include_router(healthcheck_router)