2015-08-26 20:42:02 -04:00
|
|
|
// Copyright 2015 The Go Authors. All rights reserved.
|
2015-02-26 00:53:51 -05:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2015-08-31 23:16:23 -04:00
|
|
|
// +build appengine
|
2015-02-26 00:53:51 -05:00
|
|
|
|
|
|
|
package google
|
|
|
|
|
|
|
|
import "google.golang.org/appengine"
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
appengineTokenFunc = appengine.AccessToken
|
|
|
|
}
|