Files
toutoukan/controllers/test/test.go

11 lines
173 B
Go
Raw Normal View History

2025-08-10 20:34:58 +08:00
package test
import (
"github.com/gin-gonic/gin"
"net/http"
)
func Testjwt(c *gin.Context) {
c.JSON(http.StatusOK, gin.H{"code": 20002, "msg": "处理请求成功"})
}