Skip to content
Snippets Groups Projects

Added more steps in router termination including:

Merged Neda Moeini requested to merge feature/NAT-578-update-ibgp-mesh-on-terminating-router into develop
All threads resolved!
Files
24
+ 0
2
@@ -3,11 +3,9 @@
from fastapi import APIRouter
from gso.api.v1.network import router as network_router
from gso.api.v1.processes import router as processes_router
from gso.api.v1.subscriptions import router as subscriptions_router
router = APIRouter()
router.include_router(subscriptions_router)
router.include_router(processes_router)
router.include_router(network_router)
Loading