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

18
features/ue/api.go Normal file
View File

@@ -0,0 +1,18 @@
// log management package
package ue
import (
"be.ems/features/ue/mf_calling"
"be.ems/lib/log"
"github.com/gin-gonic/gin"
)
func InitSubServiceRoute(r *gin.Engine) {
log.Info("======init UE management group gin.Engine")
mfGroup := r.Group("/psap/v1/mf")
mf_calling.Register(mfGroup)
// register other sub modules routes
}