diff --git a/src/router/router.go b/src/router/router.go index 44e1dfe306909828dff26c34f9c657cc207e694e..16ddbdbe56a334d29e063157910f58c5712a74ae 100644 --- a/src/router/router.go +++ b/src/router/router.go @@ -32,7 +32,7 @@ func Load(middleware ...gin.HandlerFunc) http.Handler { root := e.Group(config.Prefix) { root.Any("/:svcId/:applyId", handler.Proxy) + root.GET("/:svcId/:applyId/health", handler.Proxy) } - e.GET("/health", handler.Health) return e }