fix: 模块加载启动顺序

This commit is contained in:
TsMask
2023-10-28 17:00:52 +08:00
parent ff1c760452
commit e66f83dce4
2 changed files with 3 additions and 3 deletions

View File

@@ -114,8 +114,6 @@ func initDefeat(app *gin.Engine) {
func initModulesRoute(app *gin.Engine) {
// 通用模块
common.Setup(app)
// 监控模块
monitor.Setup(app)
// 系统模块
system.Setup(app)
// 网元模块
@@ -124,4 +122,6 @@ func initModulesRoute(app *gin.Engine) {
trace.Setup(app)
// 调度任务模块--暂无接口
crontask.Setup(app)
// 监控模块 - 含调度处理加入队列,放最后
monitor.Setup(app)
}