Disabled unused identifiers

This commit is contained in:
Eduard Urbach 2018-12-07 10:06:01 +09:00
parent 11865a6500
commit e4d49b7fb4

View File

@ -17,15 +17,16 @@ import (
// GoogleUser is the user data we receive from Google // GoogleUser is the user data we receive from Google
type GoogleUser struct { type GoogleUser struct {
Sub string `json:"sub"` Sub string `json:"sub"`
Name string `json:"name"` GivenName string `json:"given_name"`
GivenName string `json:"given_name"` FamilyName string `json:"family_name"`
FamilyName string `json:"family_name"` Email string `json:"email"`
Profile string `json:"profile"` Gender string `json:"gender"`
Picture string `json:"picture"`
Email string `json:"email"` // Name string `json:"name"`
EmailVerified bool `json:"email_verified"` // Profile string `json:"profile"`
Gender string `json:"gender"` // Picture string `json:"picture"`
// EmailVerified bool `json:"email_verified"`
} }
// InstallGoogleAuth enables Google login for the app. // InstallGoogleAuth enables Google login for the app.