meetandeat/controller/examples/ping.go

12 lines
150 B
Go
Raw Normal View History

2019-03-22 16:35:16 +01:00
package examples
import (
"net/http"
"github.com/gin-gonic/gin"
)
func ping(c *gin.Context) {
c.JSON(http.StatusOK, gin.H{"message": "pong"})
}