Files
full/module/base/logs/internal/logic/hello/ping.go

11 lines
136 B
Go
Raw Normal View History

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