package examples import ( "net/http" "github.com/gin-gonic/gin" ) func ping(c *gin.Context) { c.JSON(http.StatusOK, gin.H{"message": "pong"}) }