| 1 | from fastapi import APIRouter |
| 2 | |
| 3 | from app.network_connectors.routes import network_connector_settings_router |
| 4 | |
| 5 | # Instantiate the APIRouter |
| 6 | router = APIRouter() |
| 7 | |
| 8 | # Include the Inntegration Settings related routes |
| 9 | router.include_router( |
| 10 | network_connector_settings_router, |
| 11 | prefix="/network_connectors", |
| 12 | tags=["Network Connectors"], |
| 13 | ) |