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