コード例 #1
0
ファイル: accessor.go プロジェクト: gophergala2016/source
func WithValue(ctx foundation.Context, key interface{}, val interface{}) foundation.Context {
	return ctx.WithValue(key, val)
}
コード例 #2
0
ファイル: accessor.go プロジェクト: gophergala2016/source
func Value(ctx foundation.Context, key interface{}) interface{} {
	return ctx.Value(key)
}