2016-10-31 15:50:02 +00:00
|
|
|
// 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.
|
|
|
|
|
2017-05-11 14:39:54 +00:00
|
|
|
// +build appengine appenginevm
|
2016-10-31 15:50:02 +00:00
|
|
|
|
|
|
|
package google
|
|
|
|
|
|
|
|
import "google.golang.org/appengine"
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
appengineTokenFunc = appengine.AccessToken
|
2016-12-04 16:25:30 +00:00
|
|
|
appengineAppIDFunc = appengine.AppID
|
2016-10-31 15:50:02 +00:00
|
|
|
}
|