Index: go/src/infra/gae/libs/wrapper/context.go |
diff --git a/go/src/infra/gae/libs/wrapper/context.go b/go/src/infra/gae/libs/wrapper/context.go |
new file mode 100644 |
index 0000000000000000000000000000000000000000..8adec69df84c6887010cf6adb1607d0947216bc4 |
--- /dev/null |
+++ b/go/src/infra/gae/libs/wrapper/context.go |
@@ -0,0 +1,18 @@ |
+// Copyright 2015 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+package wrapper |
+ |
+type key int |
+ |
+var ( |
+ globalInfoKey key |
+ |
+ datastoreKey key = 1 |
+ memcacheKey key = 2 |
+ taskQueueKey key = 3 |
+ |
+ timeNowKey key = 4 |
+ mathRandKey key = 5 |
+) |