add: custom kpi features

This commit is contained in:
2024-08-07 15:24:08 +08:00
parent de6535e99b
commit 299d618551
12 changed files with 616 additions and 0 deletions

17
features/features.go Normal file
View File

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