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