package debug import ( "github.com/gin-gonic/gin" "net/http" ) func HelloOk(c *gin.Context) { c.JSON(http.StatusOK, gin.H{"result": "ok"}) }