You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package model |
|
|
|
// AccessInfo aso_app_perm table |
|
type AccessInfo struct { |
|
AppID int32 `json:"appid"` |
|
Mid int64 `json:"mid"` |
|
Token string `json:"access_token"` |
|
Expires int64 `json:"expires"` |
|
}
|
|
|