Files
traefik-forward-auth/provider/providers.go
2019-01-30 16:52:47 +00:00

17 lines
271 B
Go

package provider
type Providers struct {
Google Google
}
type Token struct {
Token string `json:"access_token"`
}
type User struct {
Id string `json:"id"`
Email string `json:"email"`
Verified bool `json:"verified_email"`
Hd string `json:"hd"`
}