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