Change-Id: Ie9d82a9c162eb72f63ebd75a284083eb4318d6d1
This commit is contained in:
Patrick Jones
2021-01-12 13:02:21 -08:00
parent bf1e0506de
commit 3454980053
3 changed files with 22 additions and 26 deletions

View File

@@ -15,9 +15,9 @@ import (
)
type urlCredentialSource struct {
URL string
URL string
Headers map[string]string
Format format
Format format
}
func (cs urlCredentialSource) subjectToken() (string, error) {
@@ -64,4 +64,4 @@ func (cs urlCredentialSource) subjectToken() (string, error) {
return "", errors.New("oauth2/google: invalid credential_source file format type")
}
}
}