main
py 13 lines 313 Bytes
Raw
1 from fastapi import APIRouter
2
3 from app.healthchecks.agents.routes.agents import healtcheck_agents_router
4
5 # Instantiate the APIRouter
6 router = APIRouter()
7
8 # Include the Healthcheck related routes
9 router.include_router(
10 healtcheck_agents_router,
11 prefix="/healthcheck",
12 tags=["healthcheck agents"],
13 )