feat: support mf calling api

This commit is contained in:
zhangsz
2025-05-17 18:07:58 +08:00
parent 4ce712a7e2
commit 1b2d8c9d58
7 changed files with 158 additions and 3 deletions

View File

@@ -5,6 +5,7 @@ import (
"be.ems/features/lm"
"be.ems/features/nbi"
"be.ems/features/pm"
"be.ems/features/ue"
"be.ems/lib/log"
"github.com/gin-gonic/gin"
)
@@ -18,5 +19,6 @@ func InitServiceEngine(r *gin.Engine) {
lm.InitSubServiceRoute(r)
cm.InitSubServiceRoute(r)
nbi.InitSubServiceRoute(r)
ue.InitSubServiceRoute(r)
// return featuresGroup
}