Skip to content
Snippets Groups Projects

Feature/nat 468 refactor auth

Merged Mohammad Torkashvand requested to merge feature/NAT-468-refactor-auth into develop
8 files
+ 33
41
Compare changes
  • Side-by-side
  • Inline
Files
8
+ 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