mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-03-14 05:46:26 -05:00
15 lines
308 B
Go
15 lines
308 B
Go
package model
|
|
|
|
//ProcessRes 拉起返回值
|
|
type ProcessRes struct {
|
|
Success int `json:"success"`
|
|
CaptchaID string `json:"gt"`
|
|
Challenge string `json:"challenge"`
|
|
NewCaptcha int `json:"new_captcha"`
|
|
}
|
|
|
|
//ValidateRes 验证返回值
|
|
type ValidateRes struct {
|
|
Seccode string `json:"seccode"`
|
|
}
|