mirror of
https://github.com/golang/oauth2.git
synced 2025-07-21 00:00:09 +08:00
Make all our package sources use Go 1.17 gofmt format (adding //go:build lines). Not strictly necessary but will avoid spurious changes as files are edited. Part of //go:build change (#41184). See https://golang.org/design/draft-gobuild Change-Id: I22803ea9e936fbb08984a64155302f47e181de27 Reviewed-on: https://go-review.googlesource.com/c/oauth2/+/294420 Trust: Russ Cox <rsc@golang.org> Trust: Cody Oss <codyoss@google.com> Run-TryBot: Russ Cox <rsc@golang.org> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Cody Oss <codyoss@google.com>
15 lines
322 B
Go
15 lines
322 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.
|
|
|
|
//go:build appengine
|
|
// +build appengine
|
|
|
|
package internal
|
|
|
|
import "google.golang.org/appengine/urlfetch"
|
|
|
|
func init() {
|
|
appengineClientHook = urlfetch.Client
|
|
}
|