17 lines
309 B
Go
17 lines
309 B
Go
package main
|
|
|
|
type SimklJWT struct {
|
|
TokenType string `json:"token_type"`
|
|
AccessToken string `json:"access_token"`
|
|
Scope string `json:"scope"`
|
|
}
|
|
|
|
type SimklUser struct {
|
|
Data struct {
|
|
Viewer struct {
|
|
ID int `json:"id"`
|
|
Name string `json:"name"`
|
|
} `json:"Viewer"`
|
|
} `json:"data"`
|
|
}
|