14 lines
287 B
Go
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"`
|
|
}
|
