identity.go

 1// Copyright 2011 Google Inc. All rights reserved.
 2// Use of this source code is governed by the Apache 2.0
 3// license that can be found in the LICENSE file.
 4
 5package internal
 6
 7import netcontext "golang.org/x/net/context"
 8
 9// These functions are implementations of the wrapper functions
10// in ../appengine/identity.go. See that file for commentary.
11
12func AppID(c netcontext.Context) string {
13	return appID(FullyQualifiedAppID(c))
14}