Initial commit

This commit is contained in:
yanweidong
2026-02-09 17:36:20 +08:00
commit 96b79a34ef
28 changed files with 2736 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
package hello
import (
"net/http"
"time"
"github.com/gin-gonic/gin"
)
func Ping(ctx *gin.Context) {
ctx.JSON(http.StatusOK, map[string]any{
"PING": "PONG",
"TIMESEQ": time.Now().Nanosecond(),
})
return
}