package infra import ( "github.com/gin-gonic/gin" ) func Health(ctx *gin.Context) { ctx.String(200, "ok", nil) }