11 lines
186 B
Go
11 lines
186 B
Go
package api
|
|
|
|
type CheckTokenResponse struct {
|
|
StreamerID int `json:"accountID"`
|
|
TwoFa bool `json:"twoFa"`
|
|
}
|
|
|
|
type VerifyTokenResponse struct {
|
|
Verified bool `json:"verified"`
|
|
}
|