Spaces:
Sleeping
Sleeping
| package models | |
| type GoogleAuthRequest struct { | |
| IDToken string `json:"id_token" validate:"required"` | |
| } | |
| type GoogleTokenInfo struct { | |
| Sub string `json:"sub"` | |
| Email string `json:"email"` | |
| EmailVerified bool `json:"email_verified"` | |
| Name string `json:"name"` | |
| Picture string `json:"picture"` | |
| } |