This commit is contained in:
zyj
2025-08-26 18:53:34 +08:00
commit 96db69b7e4
9 changed files with 329 additions and 0 deletions

18
api/test.go Normal file
View File

@@ -0,0 +1,18 @@
package api
import (
"net/http"
"github.com/gin-gonic/gin"
)
type Test struct {
}
func (*Test) Status(ctx *gin.Context) {
ctx.JSON(http.StatusOK, gin.H{
"code": 200,
"msg": "成功",
"data": "",
})
}