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 |
|
|
|
// AuthToken for auth |
|
type AuthToken struct { |
|
ID int64 `json:"id"` |
|
Mid int64 `json:"mid"` |
|
AppID int64 `json:"appid"` |
|
Token string `json:"token"` |
|
Expires int64 `json:"expires"` |
|
Type int64 `json:"type"` |
|
}
|
|
|