package health import ( "context" "github.com/cloudwego/hertz/pkg/app" "github.com/cloudwego/hertz/pkg/common/utils" ) func HealthHandler(c context.Context, ctx *app.RequestContext) { ctx.JSON(200, utils.H{ "message": "pong", }) }