summaryrefslogtreecommitdiff
path: root/vendor/google.golang.org/api/option/credentials_go19.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/google.golang.org/api/option/credentials_go19.go')
-rw-r--r--vendor/google.golang.org/api/option/credentials_go19.go23
1 files changed, 0 insertions, 23 deletions
diff --git a/vendor/google.golang.org/api/option/credentials_go19.go b/vendor/google.golang.org/api/option/credentials_go19.go
deleted file mode 100644
index d06f918b0e..0000000000
--- a/vendor/google.golang.org/api/option/credentials_go19.go
+++ /dev/null
@@ -1,23 +0,0 @@
-// Copyright 2018 Google LLC.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-// +build go1.9
-
-package option
-
-import (
- "golang.org/x/oauth2/google"
- "google.golang.org/api/internal"
-)
-
-type withCreds google.Credentials
-
-func (w *withCreds) Apply(o *internal.DialSettings) {
- o.Credentials = (*google.Credentials)(w)
-}
-
-// WithCredentials returns a ClientOption that authenticates API calls.
-func WithCredentials(creds *google.Credentials) ClientOption {
- return (*withCreds)(creds)
-}