auth.go 151 B

1234567891011121314
  1. package request
  2. import (
  3. "github.com/gin-gonic/gin"
  4. )
  5. type AuthReq struct {
  6. }
  7. var Auth = new(AuthReq)
  8. func (a *AuthReq) User(c *gin.Context) {
  9. }