Chromium Code Reviews

Side by Side Diff: go/src/infra/gae/libs/context/context.go

Issue 1153883002: go: infra/libs/* now live in luci-go. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: move the rest too Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
« no previous file with comments | « go/src/infra/gae/apps/helloworld/app.go ('k') | go/src/infra/gae/libs/meta/eg.go » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // +build appengine 5 // +build appengine
6 6
7 package context 7 package context
8 8
9 import ( 9 import (
10 "appengine" 10 "appengine"
11 "appengine/datastore" 11 "appengine/datastore"
12 12
13 "github.com/luci/luci-go/common/logging"
13 "github.com/mjibson/goon" 14 "github.com/mjibson/goon"
14
15 "infra/libs/logging"
16 ) 15 )
17 16
18 /// Kinds + Keys 17 /// Kinds + Keys
19 18
20 type Kinder interface { 19 type Kinder interface {
21 Kind(src interface{}) string 20 Kind(src interface{}) string
22 } 21 }
23 22
24 type KindSetter interface { 23 type KindSetter interface {
25 KindNameResolver() goon.KindNameResolver 24 KindNameResolver() goon.KindNameResolver
(...skipping 74 matching lines...)
100 99
101 type DangerousContext interface { 100 type DangerousContext interface {
102 DangerousContexter 101 DangerousContexter
103 Context 102 Context
104 } 103 }
105 104
106 type DangerousTransactionerContext interface { 105 type DangerousTransactionerContext interface {
107 DangerousContexter 106 DangerousContexter
108 TransactionerContext 107 TransactionerContext
109 } 108 }
OLDNEW
« no previous file with comments | « go/src/infra/gae/apps/helloworld/app.go ('k') | go/src/infra/gae/libs/meta/eg.go » ('j') | no next file with comments »

Powered by Google App Engine