19 lines
325 B
Go
19 lines
325 B
Go
// log management package
|
|
|
|
package lm
|
|
|
|
import (
|
|
"nms_cxy/features/lm/file_export"
|
|
"nms_cxy/lib/log"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func InitSubServiceRoute(r *gin.Engine) {
|
|
log.Info("======init Log management group gin.Engine")
|
|
|
|
lmGroup := r.Group("/lm")
|
|
// register sub modules routes
|
|
file_export.Register(lmGroup)
|
|
}
|