This commit is contained in:
yanweidong
2026-01-27 00:25:34 +08:00
parent 1e34ef857f
commit f74299fd25
20 changed files with 920 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
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
}

View File

@@ -0,0 +1,4 @@
package strategy
func Boot() {
}