Files
kami_backend/api/common/v1/captcha.go
2023-11-15 14:31:37 +08:00

14 lines
287 B
Go

package v1
import "github.com/gogf/gf/v2/frame/g"
type GetCaptchaReq struct {
g.Meta `path:"/captcha" tags:"验证码接口" method:"get" summary:"获取验证码接口"`
}
type GetCaptchaRes struct {
g.Meta `mime:"text/*"`
Key string `json:"key"`
Img string `json:"img"`
}