github.com/timstclair/heapster@v0.20.0-alpha1/Godeps/_workspace/src/google.golang.org/appengine/internal/identity.go (about)

     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  
     5  package internal
     6  
     7  import 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  
    12  func AppID(c netcontext.Context) string {
    13  	return appID(FullyQualifiedAppID(c))
    14  }