From 8e7117cbd0ccd01f50b1a48e169c594969aac680 Mon Sep 17 00:00:00 2001 From: hy001 Date: Wed, 22 Apr 2026 19:45:15 +0800 Subject: [PATCH] chore: bump health response to success4 --- internal/router/router.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/router/router.go b/internal/router/router.go index 3265a1c..d533891 100644 --- a/internal/router/router.go +++ b/internal/router/router.go @@ -61,6 +61,6 @@ func registerHealthRoutes(engine *gin.Engine, cfg config.Config, repository *rep return } - c.JSON(http.StatusOK, gin.H{"code": "ok", "message": "success3"}) + c.JSON(http.StatusOK, gin.H{"code": "ok", "message": "success4"}) }) }