Rename getAppEngineTokenSource and appEngineTokenSource

appEngineTokenSource -> gaeTokenSource
getAppEngineTokenSource -> appEngineTokenSource
This commit is contained in:
Michael Traver
2018-10-31 11:21:18 -07:00
parent 0f03d90764
commit 75f52a8d59
3 changed files with 6 additions and 6 deletions

View File

@@ -34,5 +34,5 @@ var appengineAppIDFunc func(c context.Context) string
// context and scopes are not used. Please use DefaultTokenSource (or ComputeTokenSource,
// which DefaultTokenSource will use in this case) instead.
func AppEngineTokenSource(ctx context.Context, scope ...string) oauth2.TokenSource {
return getAppEngineTokenSource(ctx, scope...)
return appEngineTokenSource(ctx, scope...)
}