2024-10-22 22:32:04 +05:00

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"`
}