feat: callback ticket features

This commit is contained in:
zhangsz
2025-06-11 17:24:41 +08:00
parent 647367394d
commit 39e91bbbe0
8 changed files with 890 additions and 1 deletions

View File

@@ -3,6 +3,7 @@
package ue
import (
"be.ems/features/ue/mf_callback_ticket"
"be.ems/features/ue/mf_calling"
"be.ems/lib/log"
"github.com/gin-gonic/gin"
@@ -14,5 +15,6 @@ func InitSubServiceRoute(r *gin.Engine) {
mfGroup := r.Group("/psap/v1/mf")
mf_calling.Register(mfGroup)
mf_callback_ticket.Register(mfGroup)
// register other sub modules routes
}