package auth type ImageCaptchaResp struct { CaptchaId string `json:"captchaId"` Data string `json:"data"` } type SmsCaptchaResp struct { CaptchaId string `json:"captchaId"` ResetAfter int `json:"resetAfter"` } type CaptchaResp struct { Status int `json:"status"` Msg string `json:"msg"` ResetAfter int `json:"resetAfter"` }