Skip to content

Commit 1bdb0cd

Browse files
committed
chore: update docs, cleanup unused
1 parent af8126f commit 1bdb0cd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

user.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"github.com/golang-jwt/jwt/v4"
99
)
1010

11-
// User represents user from well know user info endpoint
11+
// User represents user from well known user info endpoint
1212
type User struct {
1313
Email string `json:"email"`
1414
EmailVerified bool `json:"email_verified,omitempty"`
@@ -25,7 +25,6 @@ type User struct {
2525
type Token struct {
2626
Err string `json:"error,omitempty"`
2727
ErrDesc string `json:"error_description,omitempty"`
28-
AuthURI string `json:"authorization_endpoint,omitempty"`
2928
IDToken string `json:"id_token"`
3029
AccessToken string `json:"access_token,omitempty"`
3130
RefreshToken string `json:"refresh_token,omitempty"`

util.go

+1
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ func ParseExponent(es string) int {
5757
return int(new(big.Int).SetBytes(buf).Uint64())
5858
}
5959

60+
// GetCurve gets the elliptic.Curve from last 3 chars of string s
6061
func GetCurve(s string) elliptic.Curve {
6162
s3 := s[len(s)-3:]
6263
if s3 == "256" {

0 commit comments

Comments
 (0)