2016-03-22 17:42:33 +00:00
|
|
|
// Copyright 2015 The Go Authors. All rights reserved.
|
2015-07-20 17:44:35 +00:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2016-03-22 17:42:33 +00:00
|
|
|
// +build appengine
|
2015-07-20 17:44:35 +00:00
|
|
|
|
|
|
|
package google
|
|
|
|
|
|
|
|
import "google.golang.org/appengine"
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
appengineTokenFunc = appengine.AccessToken
|
|
|
|
}
|