Codebase list golang-github-go-kit-kit / 1cb1fb5
transport/grpc: use the old context; not good enough Peter Bourgon 7 years ago
5 changed file(s) with 5 addition(s) and 6 deletion(s). Raw diff Collapse all Expand all
2020 import math "math"
2121
2222 import (
23 context "context"
23 context "golang.org/x/net/context"
2424 grpc "google.golang.org/grpc"
2525 )
2626
00 package grpc
11
22 import (
3 "context"
43 "fmt"
54 "reflect"
65 "strings"
76
7 "golang.org/x/net/context"
88 "google.golang.org/grpc"
99 "google.golang.org/grpc/metadata"
1010
00 package grpc
11
22 import (
3 "context"
3 "golang.org/x/net/context"
44 )
55
66 // DecodeRequestFunc extracts a user-domain request object from a gRPC request.
00 package grpc
11
22 import (
3 "context"
43 "encoding/base64"
54 "strings"
65
6 "golang.org/x/net/context"
77 "google.golang.org/grpc/metadata"
88 )
99
00 package grpc
11
22 import (
3 "context"
4
3 "golang.org/x/net/context"
54 "google.golang.org/grpc/metadata"
65
76 "github.com/go-kit/kit/endpoint"