servcie-test.go 269 B

123456789101112131415
  1. package api
  2. import (
  3. "fmt"
  4. "github.com/gin-gonic/gin"
  5. )
  6. //ServiceTestHttp JWT授权的http处理函数
  7. func ServiceTestHttp(c *gin.Context, apictx *ApiSession) (interface{}, error) {
  8. fmt.Println("test")
  9. return "hello world " + apictx.Svc.DebugUserPhone, nil
  10. }