Index: go/src/infra/gae/libs/wrapper/context.go |
diff --git a/go/src/infra/gae/libs/gae/context.go b/go/src/infra/gae/libs/wrapper/context.go |
similarity index 67% |
rename from go/src/infra/gae/libs/gae/context.go |
rename to go/src/infra/gae/libs/wrapper/context.go |
index f8a458a281367f93dd24a9c66529869b7e62c1b6..8adec69df84c6887010cf6adb1607d0947216bc4 100644 |
--- a/go/src/infra/gae/libs/gae/context.go |
+++ b/go/src/infra/gae/libs/wrapper/context.go |
@@ -2,18 +2,17 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-package gae |
+package wrapper |
type key int |
var ( |
globalInfoKey key |
- rawDatastoreKey key = 1 |
- memcacheKey key = 2 |
- taskQueueKey key = 3 |
- |
- datastoreKey key = 4 |
+ datastoreKey key = 1 |
+ memcacheKey key = 2 |
+ taskQueueKey key = 3 |
+ timeNowKey key = 4 |
mathRandKey key = 5 |
) |