feat: 新增UE会话事件

This commit is contained in:
TsMask
2024-01-25 18:00:02 +08:00
parent b15db394fd
commit 058d0b92c8
9 changed files with 264 additions and 4 deletions

View File

@@ -36,4 +36,13 @@ func Setup(router *gin.Engine) {
)
}
// UE会话事件信息
ueGroup := neDataGroup.Group("/ue")
{
ueGroup.GET("/list",
middleware.PreAuthorize(nil),
controller.NewUEEventController.List,
)
}
}