forked from medianetlab/NEF_emulator
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'medianetlab:main' into main
- Loading branch information
Showing
50 changed files
with
3,438 additions
and
2,519 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,25 @@ | ||
from fastapi import APIRouter | ||
|
||
from app.api.api_v1.endpoints import paths, login, users, utils, gNB, Cell, UE, monitoringevent, qosMonitoring, qosInformation | ||
from app.api.api_v1 import endpoints | ||
|
||
api_router = APIRouter() | ||
api_router.include_router(login.router, tags=["login"]) | ||
api_router.include_router(users.router, prefix="/users", tags=["users"]) | ||
api_router.include_router(utils.router, prefix="/utils", tags=["UI"]) | ||
api_router.include_router(paths.router, prefix="/paths", tags=["Paths"]) | ||
api_router.include_router(gNB.router, prefix="/gNBs", tags=["gNBs"]) | ||
api_router.include_router(Cell.router, prefix="/Cells", tags=["Cells"]) | ||
api_router.include_router(UE.router, prefix="/UEs", tags=["UEs"]) | ||
api_router.include_router(qosInformation.router, prefix="/qosInfo", tags=["QoS Information"]) | ||
api_router.include_router(endpoints.login.router, tags=["login"]) | ||
api_router.include_router(endpoints.users.router, prefix="/users", tags=["users"]) | ||
api_router.include_router(endpoints.utils.router, prefix="/utils", tags=["UI"]) | ||
api_router.include_router(endpoints.ue_movement.router, prefix="/ue_movement", tags=["Movement"]) | ||
api_router.include_router(endpoints.paths.router, prefix="/paths", tags=["Paths"]) | ||
api_router.include_router(endpoints.gNB.router, prefix="/gNBs", tags=["gNBs"]) | ||
api_router.include_router(endpoints.Cell.router, prefix="/Cells", tags=["Cells"]) | ||
api_router.include_router(endpoints.UE.router, prefix="/UEs", tags=["UEs"]) | ||
api_router.include_router(endpoints.qosInformation.router, prefix="/qosInfo", tags=["QoS Information"]) | ||
# api_router.include_router(monitoringevent.router, prefix="/3gpp-monitoring-event/v1", tags=["Monitoring Event API"]) | ||
# api_router.include_router(qosMonitoring.router, prefix="/3gpp-as-session-with-qos/v1", tags=["Session With QoS API"]) | ||
#api_router.include_router(monitoringevent.monitoring_callback_router, prefix="/3gpp-monitoring-event/v1", tags=["Monitoring Event API"]) | ||
|
||
|
||
# ---Create a subapp--- | ||
nef_router = APIRouter() | ||
nef_router.include_router(monitoringevent.router, prefix="/3gpp-monitoring-event/v1", tags=["Monitoring Event API"]) | ||
nef_router.include_router(qosMonitoring.router, prefix="/3gpp-as-session-with-qos/v1", tags=["Session With QoS API"]) | ||
nef_router.include_router(endpoints.monitoringevent.router, prefix="/3gpp-monitoring-event/v1", tags=["Monitoring Event API"]) | ||
nef_router.include_router(endpoints.qosMonitoring.router, prefix="/3gpp-as-session-with-qos/v1", tags=["Session With QoS API"]) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
from .login import router | ||
from .users import router | ||
from .utils import router | ||
from .ue_movement import router | ||
from .paths import router | ||
from .gNB import router | ||
from .Cell import router | ||
from .UE import router | ||
from .qosInformation import router | ||
from .qosMonitoring import router | ||
from .monitoringevent import router |
Oops, something went wrong.