add: list and download log&cdr export file

This commit is contained in:
2024-08-27 20:11:47 +08:00
parent 74874ccad5
commit eec27d039a
11 changed files with 400 additions and 2 deletions

View File

@@ -1,6 +1,7 @@
package features
import (
"be.ems/features/lm"
"be.ems/features/pm"
"be.ems/lib/log"
"github.com/gin-gonic/gin"
@@ -10,8 +11,9 @@ func InitServiceEngine(r *gin.Engine) {
log.Info("======init feature group gin.Engine")
// featuresGroup := r.Group("/")
// 注册 PM 模块的路由
// 注册 各个features 模块的路由
pm.InitSubServiceRoute(r)
lm.InitSubServiceRoute(r)
// return featuresGroup
}