From bd171517117908239136ab73c2a232bb3792a621 Mon Sep 17 00:00:00 2001 From: zyd Date: Wed, 24 Jun 2020 19:09:03 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=AD=97=E6=AE=B5=E8=BF=87?= =?UTF-8?q?=E6=BB=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/router.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/router/router.go b/src/router/router.go index 44e1dfe..16ddbdb 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 } -- 2.26.0