feat: support export ue data

This commit is contained in:
zhangsz
2025-04-01 16:20:26 +08:00
parent 9a928f04e6
commit 96241ef281
6 changed files with 225 additions and 0 deletions

17
features/ue/service.go Normal file
View File

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