mirror of
https://git.mirrors.martin98.com/https://github.com/ceph/ceph-csi.git
synced 2025-07-29 19:02:00 +08:00

updating go dependency to latest kubernetes released version i.e v1.23.0 Signed-off-by: Madhu Rajanna <madhupr007@gmail.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
|
|
}
|