Initial commit

This commit is contained in:
Donny
2019-04-22 20:46:32 +08:00
commit 49ab8aadd1
25441 changed files with 4055000 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
package model
// QQAccessResp qq access response
type QQAccessResp struct {
Token string `json:"access_token"`
Refresh string `json:"refresh_token"`
Expires int64 `json:"expires_in"`
Code int `json:"error"`
Description string `json:"error_description"`
}
// QQOpenIDResp qq open id response
type QQOpenIDResp struct {
UnionID string `json:"unionid"`
OpenID string `json:"openid"`
Code int `json:"error"`
Description string `json:"error_description"`
}