summaryrefslogtreecommitdiff
path: root/vendor/golang.org/x/oauth2/oauth2.go
diff options
context:
space:
mode:
authorLibravatar dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2023-09-25 11:52:59 +0100
committerLibravatar GitHub <noreply@github.com>2023-09-25 11:52:59 +0100
commitd45a75e475a3fae31faefe66c72198f7012e4b1e (patch)
treeec898687b053fde963cff8f2aac7cd1cd420d379 /vendor/golang.org/x/oauth2/oauth2.go
parent[chore]: Bump github.com/abema/go-mp4 from 0.13.0 to 1.0.0 (#2222) (diff)
downloadgotosocial-d45a75e475a3fae31faefe66c72198f7012e4b1e.tar.xz
[chore]: Bump golang.org/x/oauth2 from 0.11.0 to 0.12.0 (#2223)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Diffstat (limited to 'vendor/golang.org/x/oauth2/oauth2.go')
-rw-r--r--vendor/golang.org/x/oauth2/oauth2.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/vendor/golang.org/x/oauth2/oauth2.go b/vendor/golang.org/x/oauth2/oauth2.go
index 9085fabe3..cc7c98c25 100644
--- a/vendor/golang.org/x/oauth2/oauth2.go
+++ b/vendor/golang.org/x/oauth2/oauth2.go
@@ -58,6 +58,10 @@ type Config struct {
// Scope specifies optional requested permissions.
Scopes []string
+
+ // authStyleCache caches which auth style to use when Endpoint.AuthStyle is
+ // the zero value (AuthStyleAutoDetect).
+ authStyleCache internal.LazyAuthStyleCache
}
// A TokenSource is anything that can return a token.