mirror of
https://github.com/containers/skopeo.git
synced 2025-09-21 18:09:08 +00:00
> go get github.com/containers/image/v5@main > make vendor This moves c/image to a commit that includes both the work on main that we were already vendoring, and the last tagged version 5.27.0. That should prevent Renovate from proposing downgrades which fail tests: - https://github.com/containers/skopeo/pull/2065 - https://github.com/containers/skopeo/pull/2066 Signed-off-by: Miloslav Trmač <mitr@redhat.com>
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
|
|
}
|