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.
|
|
|
|
|
2016-09-21 23:00:42 +00:00
|
|
|
// +build appengine
|
2016-02-22 00:13:08 +00:00
|
|
|
|
|
|
|
package google
|
|
|
|
|
|
|
|
import "google.golang.org/appengine"
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
appengineTokenFunc = appengine.AccessToken
|
|
|
|
}
|