2019-06-19 22:39:19 -07:00
|
|
|
// 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.
|
|
|
|
|
2022-05-04 20:54:58 +02:00
|
|
|
//go:build appengine
|
2019-06-19 22:39:19 -07:00
|
|
|
// +build appengine
|
|
|
|
|
|
|
|
package internal
|
|
|
|
|
|
|
|
import "google.golang.org/appengine/urlfetch"
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
appengineClientHook = urlfetch.Client
|
|
|
|
}
|