ingress-nginx-helm/vendor/golang.org/x/oauth2/google/appengine_hook.go

15 lines
345 B
Go
Raw Normal View History

2016-09-21 23:00:42 +00:00
// Copyright 2015 The Go Authors. All rights reserved.
2016-02-22 00:13:08 +00:00
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
2017-05-21 00:11:38 +00:00
// +build appengine appenginevm
2016-02-22 00:13:08 +00:00
package google
import "google.golang.org/appengine"
func init() {
appengineTokenFunc = appengine.AccessToken
2017-05-21 00:11:38 +00:00
appengineAppIDFunc = appengine.AppID
2016-02-22 00:13:08 +00:00
}