mirror of
https://github.com/golang/oauth2.git
synced 2025-07-21 00:00:09 +08:00
This function added a totally unused error path, since the only call site is for App Engine, which cannot produce an error. Change-Id: I86277ab4ff96e7bd140c53c5a114a338716668e3 Reviewed-on: https://go-review.googlesource.com/85935 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
14 lines
301 B
Go
14 lines
301 B
Go
// Copyright 2018 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// +build appengine
|
|
|
|
package internal
|
|
|
|
import "google.golang.org/appengine/urlfetch"
|
|
|
|
func init() {
|
|
appengineClientHook = urlfetch.Client
|
|
}
|