You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
213 B
Plaintext

syntax = "v1"
// CaptchaInfo | 验证码信息
type (
CaptchaInfo {
// CaptchaId | 验证码ID
CaptchaId string `json:"captchaId"`
// ImgPath | 验证码图片路径
ImgPath string `json:"imgPath"`
}
)