diff options
author | 2023-09-25 11:52:59 +0100 | |
---|---|---|
committer | 2023-09-25 11:52:59 +0100 | |
commit | d45a75e475a3fae31faefe66c72198f7012e4b1e (patch) | |
tree | ec898687b053fde963cff8f2aac7cd1cd420d379 /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) | |
download | gotosocial-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.go | 4 |
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. |