Files

16 lines
196 B
Go
Raw Permalink Normal View History

2026-01-27 00:25:34 +08:00
package restful
import (
"time"
"github.com/gin-gonic/gin"
)
func Ping(ctx *gin.Context) {
ctx.JSON(200, gin.H{
"message": "pong",
"timeseq": time.Now().UnixNano() / 1000,
})
return
}