mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-11-05 03:17:46 +00:00
- the image upload uses the cloud API - currently auth and image creation need the `gcloud` CLI tool. Signed-off-by: Justin Cormack <justin.cormack@docker.com>
15 lines
345 B
Go
15 lines
345 B
Go
// Copyright 2015 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.
|
|
|
|
// +build appengine appenginevm
|
|
|
|
package google
|
|
|
|
import "google.golang.org/appengine"
|
|
|
|
func init() {
|
|
appengineTokenFunc = appengine.AccessToken
|
|
appengineAppIDFunc = appengine.AppID
|
|
}
|