package handlers import ( "net/http" "github.com/gin-gonic/gin" ) // PingHandler responds with a JSON message "pong". func PingHandler(c *gin.Context) { c.JSON(http.StatusOK, gin.H{"message": "pong"}) }