2025-02-28 10:05:23 +05:00

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