fix: 代码优化

This commit is contained in:
TsMask
2025-07-15 15:16:44 +08:00
parent 9f6a7f3bb7
commit 150551acce
12 changed files with 202 additions and 130 deletions

View File

@@ -15,6 +15,8 @@ import (
"be.ems/src/modules/monitor"
networkdata "be.ems/src/modules/network_data"
networkelement "be.ems/src/modules/network_element"
"be.ems/src/modules/notification"
"be.ems/src/modules/oam"
"be.ems/src/modules/oauth2"
"be.ems/src/modules/system"
"be.ems/src/modules/tool"
@@ -84,6 +86,8 @@ func ModulesRoute(app *gin.Engine) {
auth.Setup(app)
// 开放客户端模块
oauth2.Setup(app)
// 网元OAM对接
oam.Setup(app)
// 通用模块
common.Setup(app)
@@ -92,6 +96,8 @@ func ModulesRoute(app *gin.Engine) {
// 网元数据模块
networkdata.Setup(app)
// 通知模块
notification.Setup(app)
// 跟踪模块
trace.Setup(app)
// 图表模块