mirror of
https://github.com/containers/podman.git
synced 2025-07-18 10:08:07 +08:00

now that we have public hypverv fcos artifacts, we can download them instead of requiring a special build. Signed-off-by: Brent Baude <bbaude@redhat.com> [NO NEW TESTS NEEDED]
14 lines
302 B
Go
14 lines
302 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
|
|
|
|
package internal
|
|
|
|
import "google.golang.org/appengine/urlfetch"
|
|
|
|
func init() {
|
|
appengineClientHook = urlfetch.Client
|
|
}
|