service_man/api/app_builder/routers.py

8 lines
170 B
Python
Raw Normal View History

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