Files

11 lines
136 B
Go

package hello
import (
"github.com/gin-gonic/gin"
)
// Ping
func Ping(ctx *gin.Context) {
ctx.JSON(200, gin.H{"message": "Pong"})
}