diff --git a/gengokit/template/NAME-service/NAME-client/client_main.gotemplate b/gengokit/template/NAME-service/NAME-client/client_main.gotemplate index f066ea3..ab6a182 100644 --- a/gengokit/template/NAME-service/NAME-client/client_main.gotemplate +++ b/gengokit/template/NAME-service/NAME-client/client_main.gotemplate @@ -62,7 +62,7 @@ func main() { os.Exit(1) } defer conn.Close() - service = grpcclient.New(conn) + service, err = grpcclient.New(conn) } else { fmt.Fprintf(os.Stderr, "error: no remote address specified\n") os.Exit(1) diff --git a/gengokit/template/NAME-service/generated/client/grpc/client.gotemplate b/gengokit/template/NAME-service/generated/client/grpc/client.gotemplate index 0de326c..bb1dcc6 100644 --- a/gengokit/template/NAME-service/generated/client/grpc/client.gotemplate +++ b/gengokit/template/NAME-service/generated/client/grpc/client.gotemplate @@ -2,7 +2,10 @@ package grpc import ( + "golang.org/x/net/context" "google.golang.org/grpc" + "google.golang.org/grpc/metadata" + "github.com/pkg/errors" "github.com/go-kit/kit/endpoint" grpctransport "github.com/go-kit/kit/transport/grpc" @@ -14,11 +17,21 @@ import ( ) // New returns an service backed by a gRPC client connection. It is the -// responsibility of the caller to dial, and later close, the connection. -func New(conn *grpc.ClientConn) handler.Service { - //options := []grpctransport.ClientOptions{ - //grpctransport.ClientBefore(), - //} +// responsibility of the caller to dial, and later close, the connection. +func New(conn *grpc.ClientConn, options ...ClientOption) (handler.Service, error) { + var cc clientConfig + + for _, f := range options { + err := f(&cc) + if err != nil { + return nil, errors.Wrap(err, "cannot apply option") + } + } + + clientOptions := []grpctransport.ClientOption{ + grpctransport.ClientBefore( + contextValuesToGRPCMetadata(cc.headers)), + } {{- with $tE := .}} {{- range $i := $tE.Service.Methods}} @@ -31,7 +44,7 @@ func New(conn *grpc.ClientConn) handler.Service { svc.EncodeGRPC{{$i.GetName}}Request, svc.DecodeGRPC{{$i.GetName}}Response, pb.{{GoName $i.ResponseType.GetName}}{}, - //options..., + clientOptions..., ).Endpoint() } {{end}} @@ -41,5 +54,36 @@ func New(conn *grpc.ClientConn) handler.Service { {{range $i := .Service.Methods -}} {{$i.GetName}}Endpoint: {{ToLower $i.GetName}}Endpoint, {{end}} + }, nil +} + +type clientConfig struct { + headers []string +} + +// ClientOption is a function that modifies the client config +type ClientOption func(*clientConfig) error + +func CtxValuesToSend(keys ...string) ClientOption { + return func(o *clientConfig) error { + o.headers = keys + return nil + } +} + +func contextValuesToGRPCMetadata(keys []string) grpctransport.RequestFunc { + return func(ctx context.Context, md *metadata.MD) context.Context { + var pairs []string + for _, k := range keys { + if v, ok := ctx.Value(k).(string); ok { + pairs = append(pairs, k, v) + } + } + + if pairs != nil { + *md = metadata.Join(*md, metadata.Pairs(pairs...)) + } + + return ctx } } diff --git a/gengokit/template/NAME-service/generated/transport_grpc.gotemplate b/gengokit/template/NAME-service/generated/transport_grpc.gotemplate index ec736d5..81f5663 100644 --- a/gengokit/template/NAME-service/generated/transport_grpc.gotemplate +++ b/gengokit/template/NAME-service/generated/transport_grpc.gotemplate @@ -5,6 +5,7 @@ package svc import ( "golang.org/x/net/context" + "google.golang.org/grpc/metadata" grpctransport "github.com/go-kit/kit/transport/grpc" @@ -15,9 +16,9 @@ import ( // MakeGRPCServer makes a set of endpoints available as a gRPC {{GoName .Service.GetName}}Server. func MakeGRPCServer(ctx context.Context, endpoints Endpoints) pb.{{GoName .Service.GetName}}Server { - //options := []grpctransport.ServerOption{ - // grpctransport.ServiceBefore() - //} + serverOptions := []grpctransport.ServerOption{ + grpctransport.ServerBefore(metadataToContext), + } return &grpcServer{ // {{ ToLower .Service.GetName }} {{range $i := .Service.Methods}} @@ -26,7 +27,7 @@ func MakeGRPCServer(ctx context.Context, endpoints Endpoints) pb.{{GoName .Servi endpoints.{{$i.GetName}}Endpoint, DecodeGRPC{{$i.GetName}}Request, EncodeGRPC{{$i.GetName}}Response, - //options..., + serverOptions..., ), {{- end}} } @@ -92,3 +93,14 @@ func EncodeGRPC{{$i.GetName}}Request(_ context.Context, request interface{}) (in } {{end}} +// Helpers + +func metadataToContext(ctx context.Context, md *metadata.MD) context.Context { + for k, v := range *md { + if v != nil { + ctx = context.WithValue(ctx, k, v[0]) + } + } + + return ctx +} diff --git a/gengokit/template/template.go b/gengokit/template/template.go index 800d370..7f48833 100644 --- a/gengokit/template/template.go +++ b/gengokit/template/template.go @@ -79,7 +79,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _nameServiceNameClientClient_mainGotemplate = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xac\x56\xdd\x6e\xdb\x38\x13\xbd\x16\x9f\x62\x2a\xa4\x80\x5c\xb8\x74\x3f\xe0\xdb\x1b\x03\xbe\x48\xb3\xe9\x36\xc0\xb6\x30\xe2\x00\xbd\x29\xb0\x60\xc8\x91\xc4\x8d\x44\xaa\x24\xad\x24\x10\xf4\xee\x8b\xa1\x64\xd9\x4e\x9d\x66\xbb\xbb\x05\x1a\x49\xa3\x99\x33\x7f\xe7\x50\x6e\x84\xbc\x13\x05\x42\x2d\xb4\x61\x4c\xd7\x8d\x75\x01\x32\x96\xa4\x68\xa4\x55\xda\x14\x8b\x3f\xbd\x35\x29\x4b\xd2\xbc\x12\x45\xbc\xd6\x81\x2e\xd6\xd3\x5f\x1f\x9c\xb4\xa6\x1d\x6f\xb5\x29\xa2\x35\xe8\x1a\x53\xc6\x92\xb4\xb0\x95\x30\x05\xb7\xae\x58\x3c\x2c\x0c\x86\x85\xb4\x26\xe0\x43\x04\x28\xac\x2d\x2a\xe4\x07\x2e\x85\x6b\xe4\x10\xa6\x43\xb9\xbd\xe5\xd2\xd6\x8b\xe6\xae\x58\xa0\x73\xd6\x79\x7a\xb3\x58\xc0\x4d\xa9\x3d\x6c\xd0\xb5\x5a\x22\x4b\x4a\x61\x54\x85\x0e\xd2\xae\xe3\x57\xb1\xf8\xb5\x08\x25\xbc\xed\x7b\x58\x8c\xef\xfc\xc2\xa3\x6b\xd1\xa5\x2c\x91\x95\x46\x13\x3e\xfe\x9d\x98\xc1\x35\x65\x09\x15\x35\x3c\x9c\x0c\x28\xd0\xa0\x13\x01\xd5\x18\x31\x36\x91\x94\x21\x34\x3f\x13\x46\xfe\x29\x4b\x9a\xdb\xe8\xbe\x7e\x7f\x1c\x90\xb2\x19\x63\xad\x70\xb4\x99\x3f\x60\x05\xe3\xd8\xf9\x5a\x38\x8f\x57\x26\x4c\x56\xda\x00\xdf\x34\x95\x1e\x4d\xb4\x3c\x7e\x61\xeb\x46\xc8\xd1\x32\x0c\x93\x7f\x71\xa2\xc9\x07\x4b\x73\xcb\xaf\xb1\xd0\x3e\xa0\xeb\x3a\x3e\x8e\x96\xff\x86\xe1\xb3\xa8\xb1\xef\x37\x71\x7a\x54\x00\xcb\xb7\x46\x46\xa6\x64\x33\xe8\xc6\x6d\x20\x08\xa5\x64\xa5\xa1\x71\xe8\xb7\x35\x7a\x30\x16\xfc\x00\x02\x4a\x7b\x69\x5b\x74\x8f\xe0\x1f\x7d\xc0\x7a\x0e\xc2\x28\xc0\x87\x06\x65\xf0\xb0\xf5\xe8\x3c\x04\x1b\x91\x1a\x67\x5b\xad\x10\x42\x49\x61\x0e\x65\x20\x60\x87\xde\x83\xcd\x41\x98\x1d\x26\x1f\x18\x30\x64\x6b\x82\xb6\x06\xb4\x07\x87\x79\x85\x32\xa0\x02\x6d\x22\x1c\xc1\x50\x55\xb7\xda\x08\xf7\x18\xd3\x92\x69\x34\xd3\x5a\x46\xe6\xfb\x65\x34\xbe\x0d\x4e\x18\x4f\x33\xe7\x94\x16\x88\xed\x3e\x22\x51\x68\x2b\x9c\xb6\x5b\xbf\x0b\x95\xd6\xf8\xe0\xb6\x32\x58\xe7\xe1\xd6\x86\x72\x6c\x09\x4a\xeb\xc3\x32\x4a\x68\xb7\x0b\xc6\x92\x71\x6f\x91\x12\xe7\x84\x3d\xfc\x5b\xc5\x1c\x7c\x13\x1d\xb3\x94\xde\xc6\xd4\xe9\x1c\x52\xfa\xff\xf1\xe6\x66\x7d\x34\x02\xa5\x7c\x2b\xd3\x19\x4b\x22\x27\x9f\x47\xa2\xb7\x13\xd2\xf2\x97\x77\xff\x7f\x47\x37\xc5\xf5\xfa\x02\x32\x02\x9d\x3d\x83\x5a\x63\x28\xad\x02\x38\x8d\x3a\xbc\x25\xa4\xae\x73\xc2\x14\x08\x67\xda\x28\x7c\x98\xc3\x99\x86\xe5\x0a\x26\xe2\x7c\x8a\x8e\xbe\xef\xbb\x4e\xe7\xa3\x13\x3d\x60\xe5\x91\xae\x37\xf6\x77\x7b\x8f\x0e\xce\xf4\x9e\x63\x5d\x87\x46\x4d\x97\x74\x9e\xfc\xb3\x24\xf3\x09\xe7\x07\x49\xa8\xd7\xd9\xc1\x5a\xba\x8e\x5f\xc4\xb5\x9e\xbb\xc2\xf3\xf3\xaa\xfa\x40\xab\xef\x7b\xf2\x4a\xe2\x08\xa2\xca\x32\x12\xc0\x14\xb4\x23\xf8\x78\x5e\xf0\xe9\x40\x4a\xd0\x0d\x6b\x89\x3a\x8b\x18\x3a\x87\x37\xd3\xee\x5f\xad\x20\x4d\x49\x3c\x3b\x88\x39\x79\xc2\x0a\xf6\x07\x06\xff\x8c\xf7\xd9\x14\x31\x63\x49\x0f\x34\x3b\x20\x9c\x69\xf3\x7b\x1c\x69\x8d\x19\x40\x96\x2b\x88\xbb\xff\x55\x8b\x2a\x9b\x5c\xe7\x83\xf1\x8b\x0e\xe5\x95\xf1\x28\xb7\x0e\xb3\xd9\x81\xf1\x46\xd7\x68\xb7\x21\xa3\x43\x9b\x6f\x50\x5a\xa3\x66\x44\x07\x9d\x47\xd0\x57\x2b\x30\xba\x8a\x99\x92\xbc\x0e\xfc\x43\xe3\xb4\x09\x79\x66\x3d\xdf\x04\x85\xce\xcd\x21\xbd\xa4\x5e\xe1\xbe\xd4\x15\x69\x57\x54\xda\x14\x11\x9f\x84\x62\x50\x92\x48\x97\xf0\xba\x4d\x63\x99\x84\x9d\x58\xcf\x2f\x1f\x74\xc8\xfe\x47\x4f\x3d\x4b\x12\x85\x39\xba\xe8\xcf\x2f\x2a\x1b\xc7\xbd\x9f\xf2\xd0\xd7\xc1\x74\xc8\x6f\x3f\x18\xaa\xed\xb9\xd2\xe2\x1a\x96\x74\x26\x39\xac\x6d\xc0\x89\xfb\xbe\x41\xa9\x73\x8d\xea\xab\x89\xec\x3f\xac\xa8\x67\x27\xba\x7f\x21\xc3\xeb\xf6\xab\xd9\x37\x78\x8c\xc6\x12\x7f\xaf\x83\x2c\xe1\xcd\xa8\xb1\x8e\x75\x1d\xdc\xeb\x50\xc2\x59\xb8\x8c\xc4\x26\xbe\xed\x39\x4f\xa6\xb3\x70\xf9\x3d\xdd\x69\xdf\xc2\x23\x89\xf0\x14\xc5\xd3\x25\x0d\xb7\xeb\xde\x0e\xe0\x51\x16\x11\xe8\x80\xe1\x84\x45\x37\x07\x81\xf4\x89\xa1\xc0\x48\x6f\x6a\x7b\x24\x6f\xc4\xe2\x9f\x84\xf3\xa5\xd8\xcb\x62\x48\x10\xb5\x44\x0f\x0e\xbf\x6d\xd1\x87\x89\x82\x47\x1f\x59\xde\x75\x87\xf5\x65\x5d\xf7\x53\x85\x91\x68\xf9\x85\xa8\x2a\xb2\x4f\x0a\x8e\x0c\x3a\x41\xcf\x17\xf8\x29\x45\x15\x99\xf9\xa3\x02\x9f\xee\xf1\x09\x53\xe3\x2e\x93\xa4\x9d\x9a\xdd\x7d\x94\x9e\xb4\x39\xfe\xcc\xe1\xef\x85\xbc\x2b\x9c\xdd\x1a\x45\x92\x1b\x27\xf5\x2f\xcb\x3f\x9d\xf2\xe5\xc2\xc7\x04\x6b\xc2\xaf\x4c\x96\x0e\x93\x87\xeb\xa1\x28\x54\x91\x32\xcb\xa8\x85\x23\xc7\xff\x6e\x65\x47\xe9\x87\x9f\x15\x70\x8d\xbe\xb1\x46\x3d\x9f\xbe\x9d\xb1\x03\xbe\x1d\x30\x4f\x61\x2e\xb6\x55\x58\xbe\x2c\x4d\x6d\x5a\x51\x69\x05\xa3\xf8\x5e\x7f\x8b\x83\x1a\x9e\xbe\x17\x6b\xcf\xd8\x5f\x01\x00\x00\xff\xff\x5e\x2d\xc2\x5e\x15\x0b\x00\x00") +var _nameServiceNameClientClient_mainGotemplate = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xac\x56\xd1\x6f\xdb\xb6\x13\x7e\x16\xff\x8a\xab\x90\x02\x72\xe1\xd2\xfd\x01\xbf\xbd\x18\xf0\x43\x9b\xa5\x6b\x80\xb5\x30\xe2\x00\x7d\x29\x30\x30\xe4\x49\xe2\x22\x91\x2a\x49\x2b\x09\x04\xfd\xef\xc3\x51\xb2\x6c\x27\x4e\xb3\x6e\x2b\xd0\x48\x3c\xde\x7d\x77\xbc\xfb\x3e\xca\x8d\x90\xb7\xa2\x40\xa8\x85\x36\x8c\xe9\xba\xb1\x2e\x40\xc6\x92\x14\x8d\xb4\x4a\x9b\x62\xf1\xa7\xb7\x26\x65\x49\x9a\x57\xa2\x88\xcf\x3a\xd0\xc3\x7a\xfa\xeb\x83\x93\xd6\xb4\xe3\xab\x36\x45\xb4\x06\x5d\x63\xca\x58\x92\x16\xb6\x12\xa6\xe0\xd6\x15\x8b\xfb\x85\xc1\xb0\x90\xd6\x04\xbc\x8f\x00\x85\xb5\x45\x85\xfc\xc0\xa5\x70\x8d\x1c\xc2\x74\x28\xb7\x37\x5c\xda\x7a\xd1\xdc\x16\x0b\x74\xce\x3a\x4f\x3b\x8b\x05\x5c\x97\xda\xc3\x06\x5d\xab\x25\xb2\xa4\x14\x46\x55\xe8\x20\xed\x3a\x7e\x19\x8b\x5f\x8b\x50\xc2\xdb\xbe\x87\xc5\xb8\xe7\x17\x1e\x5d\x8b\x2e\x65\x89\xac\x34\x9a\xf0\xe9\xef\xc4\x0c\xae\x29\x4b\xa8\xa8\x61\x71\x32\xa0\x40\x83\x4e\x04\x54\x63\xc4\x78\x88\xa4\x0c\xa1\xf9\x99\x30\xf2\x4f\x59\xd2\xdc\x44\xf7\xf5\x87\xe3\x80\x94\xcd\x18\x6b\x85\xa3\xc9\xfc\x01\x2b\x18\xdb\xce\xd7\xc2\x79\xbc\x34\x61\xb2\xd2\x04\xf8\xa6\xa9\xf4\x68\xa2\xe1\xf1\x73\x5b\x37\x42\x8e\x96\xa1\x99\xfc\xab\x13\x4d\x3e\x58\x9a\x1b\x7e\x85\x85\xf6\x01\x5d\xd7\xf1\xb1\xb5\xfc\x37\x0c\x5f\x44\x8d\x7d\xbf\x89\xdd\xa3\x02\x58\xbe\x35\x32\x32\x25\x9b\x41\x37\x4e\x03\x41\x28\x25\x2b\x0d\x8d\x43\xbf\xad\xd1\x83\xb1\xe0\x07\x10\x50\xda\x4b\xdb\xa2\x7b\x00\xff\xe0\x03\xd6\x73\x10\x46\x01\xde\x37\x28\x83\x87\xad\x47\xe7\x21\xd8\x88\xd4\x38\xdb\x6a\x85\x10\x4a\x0a\x73\x28\x03\x01\x3b\xf4\x1e\x6c\x0e\xc2\xec\x30\xf9\xc0\x80\x21\x5b\x13\xb4\x35\xa0\x3d\x38\xcc\x2b\x94\x01\x15\x68\x13\xe1\x08\x86\xaa\xba\xd1\x46\xb8\x87\x98\x96\x4c\xa3\x99\xc6\x32\x32\xdf\x2f\xa3\xf1\x6d\x70\xc2\x78\xea\x39\xa7\xb4\x40\x6c\xf7\x11\x89\x42\x5b\xe1\xb4\xdd\xfa\x5d\xa8\xb4\xc6\x07\xb7\x95\xc1\x3a\x0f\x37\x36\x94\xe3\x91\xa0\xb4\x3e\x2c\xa3\x84\x76\xb3\x60\x2c\x19\xe7\x16\x29\xf1\x9e\xb0\x87\x7f\xab\x98\x83\x6f\xa2\x63\x96\xd2\x6e\x4c\x9d\xce\x21\xa5\xff\x9f\xae\xaf\xd7\x47\x2d\x50\xca\xb7\x32\x9d\xb1\x24\x72\xf2\x79\x24\xda\x9d\x90\x96\xbf\xbc\xfb\xff\x3b\x7a\x29\xae\xd6\xe7\x90\x11\xe8\xec\x19\xd4\x1a\x43\x69\x15\xc0\x69\xd4\x61\x97\x90\xba\xce\x09\x53\x20\x9c\x69\xa3\xf0\x7e\x0e\x67\x1a\x96\x2b\x98\x88\xf3\x39\x3a\xfa\xbe\xef\x3a\x9d\x8f\x4e\xb4\xc0\xca\x23\x3d\xaf\xed\xef\xf6\x0e\x1d\x9c\xe9\x3d\xc7\xba\x0e\x8d\x9a\x1e\xe9\x3c\xf9\x67\x49\xe6\x13\xce\x0f\x92\xd0\x59\x67\x07\x63\xe9\x3a\x7e\x1e\xc7\xfa\xde\x15\x9e\xbf\xaf\xaa\x8f\x34\xfa\xbe\x27\xaf\x24\xb6\x20\xaa\x2c\x23\x01\x4c\x41\x3b\x82\x8f\xf7\x05\x9f\x2e\xa4\x04\xdd\x30\x96\xa8\xb3\x88\xa1\x73\x78\x33\xcd\xfe\xd5\x0a\xd2\x94\xc4\xb3\x83\x98\x93\x27\xac\x60\x7f\x61\xf0\x2f\x78\x97\x4d\x11\x33\x96\xf4\x40\xbd\x03\xc2\x99\x26\xbf\xc7\x91\xd6\x98\x01\x64\xb9\x82\x38\xfb\x5f\xb5\xa8\xb2\xc9\x75\x3e\x18\xbf\xea\x50\x5e\x1a\x8f\x72\xeb\x30\x9b\x1d\x18\xaf\x75\x8d\x76\x1b\x32\xba\xb4\xf9\x06\xa5\x35\x6a\x46\x74\xd0\x79\x04\x7d\xb5\x02\xa3\xab\x98\x29\xc9\xeb\xc0\x3f\x36\x4e\x9b\x90\x67\xd6\xf3\x4d\x50\xe8\xdc\x1c\xd2\x0b\x3a\x2b\xdc\x95\xba\x22\xed\x8a\x4a\x9b\x22\xe2\x93\x50\x0c\x4a\x12\xe9\x12\x5e\xb7\x69\x2c\x93\xb0\x13\xeb\xf9\xc5\xbd\x0e\xd9\xff\x68\xd5\xb3\x24\x51\x98\xa3\x8b\xfe\xfc\xbc\xb2\xb1\xdd\x4f\x5a\xb4\xbf\x8a\x63\x8b\xc8\x79\xdf\x1d\x2a\xf0\xb9\xfa\xe2\x2c\x96\x74\x31\x39\xac\x6d\xc0\x49\x00\xbe\x41\xa9\x73\x8d\xea\x9b\x89\x12\x38\x2c\xab\x67\x27\x5a\xf0\x42\x86\xd7\xed\x37\xb3\x3f\xe5\x31\x1a\x4b\xfc\x9d\x0e\xb2\x84\x37\xa3\xd0\x3a\xd6\x75\x70\xa7\x43\x09\x67\xe1\x22\xb2\x9b\x48\xb7\x27\x3e\x99\xce\xc2\xc5\x53\xce\xd3\xd0\x85\x47\x52\xe2\x29\x9e\xa7\x4b\xea\x70\xd7\xbd\x1d\xc0\xa3\x36\x22\xd0\x01\xcd\x09\x8b\x5e\x0e\x02\xe9\x3b\x43\x81\x91\xe3\x74\xec\x91\xc1\x11\x8b\x7f\x16\xce\x97\x62\xaf\x8d\x21\x41\x14\x14\x2d\x1c\x7e\xdf\xa2\x0f\x13\x0f\x8f\xbe\xb4\xbc\xeb\x0e\xeb\xcb\xba\xee\xa7\x0a\x23\xe5\xf2\x73\x51\x55\x64\x9f\x64\x1c\x69\x74\x82\xa3\x2f\x90\x54\x8a\x2a\xd2\xf3\x47\x05\x3e\x9e\xe3\x23\xba\xc6\x59\x26\x49\x3b\x1d\x76\xf7\x65\x7a\x74\xcc\xf1\xb7\x0e\xff\x20\xe4\x6d\xe1\xec\xd6\x28\xd2\xdd\xd8\xa9\x7f\x59\xfe\xe9\x94\x2f\x17\x3e\x26\x58\x13\x7e\x65\xb2\x74\xe8\x3c\x5c\x0d\x45\xa1\x8a\x94\x59\x46\x2d\x1c\x39\xfe\x77\x23\x3b\x4a\x3f\xfc\xb6\x80\x2b\xf4\x8d\x35\xea\xf9\xf4\xed\x8c\x1d\xf0\xed\x80\x79\x0a\x73\xb1\xad\xc2\xf2\x65\x69\x6a\xd3\x8a\x4a\x2b\x18\xc5\xf7\xfa\x7b\x6c\xd4\xb0\x7a\x2a\xd6\x9e\xb1\xbf\x02\x00\x00\xff\xff\xf6\xa8\x3c\xa8\x1a\x0b\x00\x00") func nameServiceNameClientClient_mainGotemplateBytes() ([]byte, error) { return bindataRead( @@ -94,7 +94,7 @@ func nameServiceNameClientClient_mainGotemplate() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "NAME-service/NAME-client/client_main.gotemplate", size: 2837, mode: os.FileMode(436), modTime: time.Unix(1477333032, 0)} + info := bindataFileInfo{name: "NAME-service/NAME-client/client_main.gotemplate", size: 2842, mode: os.FileMode(436), modTime: time.Unix(1477698725, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -119,7 +119,7 @@ func nameServiceNameServerServer_mainGotemplate() (*asset, error) { return a, nil } -var _nameServiceGeneratedClientGrpcClientGotemplate = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x84\x93\x4d\x6f\xdb\x3c\x0c\xc7\xcf\xd2\xa7\x20\x8c\x1c\x92\x07\xa9\x74\x2f\xd0\x4b\xf3\x64\x45\x81\xad\xcb\xba\xdc\x86\x1d\x14\x99\xb1\x85\x3a\x92\x27\xc9\xc9\x02\xc1\xdf\x7d\xa0\x5f\xf2\x52\xa4\xdb\xc1\x80\x41\xfd\x48\x91\xff\x3f\x25\x25\xac\x94\x7e\x53\x05\x42\xe1\x6b\x0d\xb5\x77\x7b\x93\x63\x00\x05\xc5\xeb\x6a\x01\xba\x32\x68\x23\x6c\x9d\x87\x58\x22\xa4\x24\xbe\xa3\xdf\x1b\x8d\xe2\x09\xe3\x8b\xda\x61\xdb\x42\x18\x22\xbc\xbe\xa8\xc4\xb9\xd9\xd5\xce\x47\x98\x72\x96\x15\xce\x15\x15\x8a\xc2\x55\xca\x16\xc2\xf9\x42\x12\x92\x71\x3a\x32\xb1\x6c\x36\x42\xbb\x9d\x2c\xdc\xdd\x9b\x89\x92\x3e\xb4\x79\xed\x8c\x8d\x19\x67\x44\x46\xaf\x6c\xe8\xaa\x7d\xc0\x9f\x80\x53\x61\x29\x61\x5d\x9a\x00\x43\xbb\x9c\x95\xca\xe6\x15\x7a\xc8\x52\x12\xcf\x5d\x6b\x2b\x15\x4b\xb8\x6b\x5b\x90\xc3\x59\x90\x34\x0a\xfa\x8c\xb3\xb0\xd7\x37\xc9\x02\x2d\x7a\x15\x31\xcf\x38\xab\x37\x1d\xb2\x7a\xbc\x86\x32\x3e\xe3\x5c\x4a\x78\xc1\x03\x78\x8c\x8d\xb7\x01\x94\x1d\x55\x82\x8d\xd2\x6f\x98\xc3\xe6\xf8\x4e\x62\xed\xac\x45\x1d\x8d\xb3\x02\x9e\x23\x98\x40\x82\x53\x1d\x8f\xa1\x76\x36\x98\x8d\xa9\x4c\x3c\x82\xdb\x76\x4e\x68\x55\xd1\x34\xd1\x41\x6e\x54\x35\x07\x65\x73\xa8\x54\x44\x0f\xba\x72\x01\xe7\x3d\x74\xae\xc9\xb7\x8d\xd5\xd4\xd3\x94\x82\xf0\x1f\xe9\x24\x16\xdd\xd5\x0b\x67\xed\x0c\x06\x0d\x46\x7f\x21\x91\x86\xae\xa6\xe4\x00\xf7\x0f\xf0\xe3\xe7\x95\x13\x43\xee\xd7\x1e\x48\x9c\x31\x29\x6f\x01\x8f\xb8\x75\x1e\xa7\xb3\x39\x95\x6b\x39\x67\x29\xdd\xc1\xc1\xc4\x12\x26\x71\x49\x75\x45\xdb\x72\xd6\x45\xbd\xb2\x05\xc2\xc4\x50\x74\x12\x97\xa7\x4d\xfb\x82\xb1\x74\x79\xe8\x38\xb6\x57\x1e\x52\x5a\xbb\xcf\xee\x80\x1e\x26\xe6\xbc\x87\xcb\x61\x67\x60\x5c\x1e\x31\x46\x28\x8f\x3a\xa4\x6b\xfe\x9a\xf9\x00\xd7\x23\xbc\xe0\xa1\x9f\x62\xda\x65\x33\x92\x6e\xde\xff\x66\x29\xad\xbd\xd9\xad\x3c\x6e\xcd\xef\xab\x76\x3f\x35\x55\x75\xfc\xd6\xa8\xca\x6c\x0d\xe6\x74\x03\x64\x22\x6b\xdb\xec\x9c\x79\x79\xf9\x18\x0e\x7b\x2d\x96\x56\xbb\x1c\x9f\x5e\x57\x8b\x6b\xe6\x15\x7f\x35\x18\xe2\x05\xf9\x3f\x7e\x44\x76\xcb\x82\x03\x5a\x6f\x44\x4a\x4f\xae\x6b\x62\x62\xc4\x78\xba\x3e\xd6\x17\x0f\x38\xb5\x03\x7d\xf2\x5b\x08\xd1\x87\x66\x27\x0d\xa7\x33\x0a\xf4\x56\xa1\xcd\xc9\x8c\xf1\x87\xb3\x7e\xcd\xa1\x1f\xa1\xe7\x69\x25\x52\xba\xb4\xf4\xbd\x9f\xf4\x56\xba\x72\xb7\xac\xb8\x07\x80\x7f\xf8\x3c\x3f\x77\xc0\x5a\xde\xf2\x3f\x01\x00\x00\xff\xff\x31\x1b\x3f\x4c\xcb\x04\x00\x00") +var _nameServiceGeneratedClientGrpcClientGotemplate = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x84\x55\xdf\x6f\xdb\x36\x10\x7e\x16\xff\x8a\x9b\x10\x0c\x52\xa0\x50\xef\x1d\xfc\x52\x37\x0d\x3a\x2c\x99\x97\x06\xdb\x43\x51\x0c\x34\x75\x92\x09\xcb\xa4\x46\xd2\x8e\x0d\x41\xff\xfb\x70\x94\x64\x4b\x46\xd2\x3e\x14\xb5\xee\x3e\x7e\xf7\xf3\xbb\xe4\x39\xac\x84\xdc\x8a\x0a\xa1\xb2\x8d\x84\xc6\x9a\x83\x2a\xd0\x81\x80\xea\x79\xb5\x04\x59\x2b\xd4\x1e\x4a\x63\xc1\x6f\x10\xda\x96\x7f\x45\x7b\x50\x12\xf9\x03\xfa\x27\xb1\xc3\xae\x03\x37\x58\x58\x33\x61\x62\x4c\xed\x1a\x63\x3d\x24\x2c\x8a\x2b\x53\x0b\x5d\x71\x63\xab\xfc\x98\x6b\xf4\xb9\x34\xda\xe3\xd1\xc7\xc1\x67\xaa\x1a\xf9\x04\x42\xcf\xdf\xf7\xe4\x3b\xf4\xa2\x10\x5e\x04\x88\xf2\x9b\xfd\x9a\x4b\xb3\xcb\x9b\x6d\x95\xa3\xb5\xc6\xba\x98\xcd\x3d\x95\xb9\xdb\x2a\x9f\xd3\x3f\xd4\x45\x63\x94\xa6\xc0\xc4\xe5\xad\xd0\x2e\x64\xf9\x0e\xfe\x0c\x18\x92\x62\x51\x9e\xc3\xcb\x46\x39\x18\xda\xc0\xa2\x8d\xd0\x45\x8d\x16\xe2\xb6\xe5\x5f\x42\xc9\x2b\xe1\x37\x70\xd7\x75\x90\x0f\x3e\x97\x53\x8b\xd0\xc6\x2c\x72\x07\xf9\x26\xb2\x42\x8d\x56\x78\x2c\x62\x16\x35\xeb\x00\x59\x7d\x9c\x83\x62\x96\x32\x96\xe7\xf0\x84\xaf\x60\xd1\xef\xad\x76\x20\xf4\xd8\x7d\x58\x0b\xb9\xc5\x02\xd6\xa7\xab\xd1\x49\xa3\x35\x4a\xaf\x8c\xe6\xf0\xc5\x83\x72\x34\x48\xe2\xb1\xe8\x1a\xa3\x9d\x5a\xab\x5a\xf9\x13\x98\x32\x4c\x58\x8a\x9a\xaa\xf1\x06\x0a\x25\xea\x0c\x84\x2e\xa0\x16\x1e\x2d\xc8\xda\x38\xcc\x7a\xd0\x84\x13\x58\xb9\xd7\x92\xb2\x4a\xc8\x0c\xb7\xd4\x29\xbe\x0c\xc1\x97\x46\xeb\x0c\x4c\x43\x48\x07\x9c\x0f\xe6\x3f\x83\x21\x85\x64\xe8\xcf\xb8\x53\x19\x84\x01\xa6\xd0\xb2\xe8\x20\x2c\x48\x39\x14\xb1\x34\xba\x54\x15\x63\x11\xed\xe1\xbf\x19\x94\xf0\x61\x01\x56\xe8\x0a\xcf\xe4\x2d\x8b\x22\xb4\x96\x1c\x65\xf2\xab\x94\x29\x8b\x22\x55\x12\x21\xfc\xb2\x00\xad\xea\x80\x88\xfa\xc6\xd1\xf7\x10\xcc\xf1\x7f\xac\x68\x12\xb4\x36\x83\x58\x0a\xad\x8d\x07\xd1\x34\xf5\x69\x60\x8e\x89\xa8\x63\x51\xc7\x58\x24\x27\xd9\x3b\x8a\xf4\xed\xfb\x6c\x8b\x66\xe5\x51\xb8\xb7\xbc\x1f\xb1\x34\x16\x13\x4a\x66\x50\xc1\xdf\xa2\xde\xa3\x7b\x31\x0f\xcf\xab\xe5\xe3\xb0\xdc\x89\x94\x7c\x83\xa2\x40\xeb\xd2\x34\xeb\xc3\xb7\xed\x1d\xbc\x2a\xbf\x81\x1b\x7f\x4f\xd1\x79\xd7\xb1\x28\x58\xfb\x56\xdc\x28\xb2\xde\xf8\xfb\xb3\x46\x1f\xd1\x6f\x4c\xe1\x02\x2e\x74\xb4\x6d\x5f\xcc\x1f\xe6\x15\x2d\xdc\xa8\x8b\x82\xef\x07\x55\xc0\x28\x0f\x3e\x5a\xe8\x5d\xe8\x5b\xf4\x93\x97\x0b\x98\xd7\xfa\x84\xaf\x7d\xb9\xa1\xd0\x50\xaa\xce\xfa\x9f\x71\xdb\xbe\x58\xb5\x5b\x59\x2c\xd5\x71\x96\xee\xe7\x7d\x5d\x9f\xfe\xda\x8b\x5a\x95\x0a\x0b\x8a\x00\x31\x8f\xbb\x2e\xbe\xbc\x9c\x06\x1f\xcd\xee\x20\xf9\xbd\x96\xa6\x40\xea\xe0\x1c\xf3\x8c\xff\xed\xd1\xf9\x09\xf2\x13\xbe\x87\x0c\x72\xc0\x01\xda\xac\x79\xdb\x3e\x98\x90\xc4\x8d\xe2\xa3\xf7\xe5\xd4\x4c\x4e\x5f\xdb\x0d\xe8\xd9\x66\x70\xce\x7b\x73\x7a\xee\x63\x42\x5b\x14\xf5\xe3\x42\x5d\xd0\x40\xc6\x1f\x6c\xdc\xc9\xbe\x8c\x1e\xef\x5a\x02\x4c\xc7\x7a\x3d\x53\xba\x08\x81\xee\xad\x71\x7c\x00\x80\x9f\xcc\x3a\xbb\x64\x10\x75\x19\x09\x82\x75\x8c\xf9\x53\x83\x33\xcd\x81\xf3\x76\x2f\x3d\x89\x67\x58\x47\xf8\xf6\xdd\x79\xab\x74\x45\xf8\x3c\x87\xe9\xce\xd3\x75\x11\x40\xf7\x20\x7c\xf9\x8d\xf0\xb0\x33\x05\x8d\xd3\xf5\x87\xe3\x7c\x93\x48\xcf\x21\xda\xec\x3d\x3d\x4d\x6e\xa7\x09\xa4\xbd\x4c\x59\x7f\x65\x96\xfe\x38\xaa\xe5\x2b\xea\x22\xd9\xe2\x29\xdc\x95\x3e\xa3\x74\x4e\xd6\x9e\x5b\x1b\x68\x0d\xbc\x45\x1c\xce\x82\x19\xb5\x06\x0b\x20\x4a\x36\x3d\x14\x24\xbe\x6e\x88\xff\x23\xc5\x86\x5c\xc6\xe6\xa4\x57\x7a\x18\xf6\xf0\x33\x91\x5c\xe5\x25\xfd\x71\xe4\xe5\xcb\xfe\xff\x0c\x76\x05\xdc\x8e\x7f\xe8\xf8\xe3\xa7\xf4\x1a\x11\xd2\x26\x45\x37\x42\x4d\x67\x12\x8d\x27\x72\x7b\x39\x91\x21\xb1\xa0\x62\x55\xc2\x21\x03\x13\x7c\xd2\x1f\x79\xa8\x23\xd9\xa6\x3c\x19\xb2\xfe\x8d\x9c\xbd\xe0\x7b\xe2\x05\x1d\x43\xea\x74\xf8\xcc\x60\x9b\xc1\xe1\xbc\xcb\xb4\xbc\xc4\xd9\x43\xa7\x67\xf6\x76\x57\xc0\x02\xce\x05\xfc\x6e\x94\x4e\x6e\x77\x45\x76\x31\xad\xe8\x4d\xcf\xca\x39\x4f\xd3\x91\x6e\xe8\x8c\xf4\xc7\xbe\xef\xff\x07\x00\x00\xff\xff\x98\xe6\x41\x14\xa1\x08\x00\x00") func nameServiceGeneratedClientGrpcClientGotemplateBytes() ([]byte, error) { return bindataRead( @@ -134,7 +134,7 @@ func nameServiceGeneratedClientGrpcClientGotemplate() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "NAME-service/generated/client/grpc/client.gotemplate", size: 1227, mode: os.FileMode(436), modTime: time.Unix(1477359850, 0)} + info := bindataFileInfo{name: "NAME-service/generated/client/grpc/client.gotemplate", size: 2209, mode: os.FileMode(436), modTime: time.Unix(1477698951, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -154,7 +154,7 @@ func nameServiceGeneratedClientHttpClientGotemplate() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "NAME-service/generated/client/http/client.gotemplate", size: 105, mode: os.FileMode(436), modTime: time.Unix(1477435906, 0)} + info := bindataFileInfo{name: "NAME-service/generated/client/http/client.gotemplate", size: 105, mode: os.FileMode(436), modTime: time.Unix(1477696627, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -179,7 +179,7 @@ func nameServiceGeneratedEndpointsGotemplate() (*asset, error) { return a, nil } -var _nameServiceGeneratedTransport_grpcGotemplate = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xac\x55\xc1\x6e\xe3\x36\x10\x3d\x8b\x5f\x31\x35\x82\xc2\x5e\xd8\xd4\x3d\x40\x2e\x9b\x6e\xd3\x05\xba\x5b\x23\xcd\xad\x28\x16\xb4\x3c\x96\x89\xc8\x24\x43\xd2\xde\xb8\x84\xfe\xbd\x18\x52\xb2\xe5\xd8\xb1\x9c\x20\x87\x40\x31\xf5\x38\x33\xef\xbd\x99\x91\x11\xc5\xa3\x28\x11\xdc\xa6\x60\x2c\xcf\xe1\x61\x29\x1d\x2c\x64\x85\x60\xac\xde\xc8\x39\x3a\x70\x68\x37\x68\x27\x4e\xce\x11\x66\x52\xcd\xa5\x2a\x1d\x2c\xb4\x05\xbf\x44\x28\xef\xa7\xb7\xe0\xad\x50\xce\x68\xeb\x39\x85\xf8\xea\x61\xed\x65\x25\xff\x43\x17\x21\xbb\xb7\x79\x69\x4d\xc1\xff\x8e\xe1\x38\x63\x72\x45\x87\x30\x64\xd9\xa0\xd4\x95\x50\x25\xd7\xb6\xcc\x9f\x73\x85\x3e\x2f\xb4\xf2\xf8\xec\x07\x8c\x65\x74\x69\x17\x02\x06\xa5\xf4\xcb\xf5\x8c\x17\x7a\x95\x97\x7a\xf2\x28\x7d\x4e\x7f\x87\x39\xe8\x5a\xcb\x85\xd2\xc9\x02\x59\x66\x66\x30\x08\x81\x4f\x3f\x7f\x8d\x79\xa7\xc2\x2f\x61\x52\xd7\x03\x36\x62\x91\xf9\x37\xf1\x88\x77\xf7\xd3\xdb\x54\x1f\xac\xc4\x23\x3a\x10\xe0\xd0\x83\x5e\x00\xaa\xb9\xd1\x52\x79\x07\x62\x23\x64\x25\x66\x15\x82\xa0\xf7\x51\x80\x10\xee\xf4\x77\xb1\x42\xe0\x4d\x3a\x7e\x87\x9e\x0e\xea\xba\xa5\xbb\x58\xab\xe2\x45\x8e\x61\xe1\x9f\xa1\x61\xca\x6f\xd3\x73\xdc\xc9\xf4\xa5\xfd\x6f\x04\x66\xc6\x7b\x73\x40\x20\xd6\xda\x78\xa9\x95\x83\xeb\x1b\xf8\xe7\xdf\x03\xed\x1a\xe5\xff\x8a\x80\xc0\x32\x92\xe8\x18\x20\x0b\xfc\x8c\x0b\x6d\x71\x38\xa2\x70\x35\xcb\x2c\xfa\xb5\x55\xf0\x2b\x61\x53\x88\x98\x08\x42\x80\x07\xfd\xa7\xfe\x89\xf6\xa8\x24\xa8\x6b\x96\x85\x60\x85\x2a\x11\xae\x24\x15\xb3\x83\x7c\x43\xbf\xd4\x73\x47\x88\x2c\x84\x36\xc2\x95\xdc\xd3\xb9\x7e\x51\xd6\x77\xfc\xd9\x08\xc6\xb2\x2c\x2b\xfc\xf3\x98\x9e\x3b\x9d\x78\x08\xdd\xdb\xad\x6a\x11\xf4\x1b\x16\x7a\x1e\x25\x3f\x04\xdd\xe3\xd3\x1a\x5d\xc2\x7c\x51\xaf\x61\x9c\xd1\xca\x61\x04\xed\x84\xe5\x9c\xd3\xc1\x68\x4c\x04\x27\xe4\x16\x31\xa9\x59\x1d\x9b\x68\xaf\x11\xc8\x95\xa9\x70\x85\x64\x24\x4d\x41\xbf\x7d\x52\x79\xb4\x0b\x51\x20\xf3\x5b\x83\xdd\x50\xce\xdb\x75\xe1\x21\xb0\x7e\x49\x4f\x2b\x0a\xf0\x42\xd2\x3f\x84\x9a\x57\x68\xd9\x9e\x42\xaa\xbf\x89\x14\xc7\xbb\x53\x80\xd7\x7b\x3a\x6f\x62\xd2\x5b\x70\x1c\x8b\xa1\x83\x4f\xfb\x6c\xa3\x7d\x86\x2e\x87\xd3\xd3\x62\xf1\x09\x3e\x75\xa7\xe3\x4a\xf2\xc6\xdc\x87\xad\xe9\x94\x36\x82\xe1\x31\x2e\x19\x7c\x08\x1c\x03\x5a\xab\xa9\x0a\x96\xfd\xa0\x04\x26\x9e\x50\xfd\xd4\x6a\xa7\xe4\x4d\x93\x45\x1d\x44\x45\xc6\xa2\x46\x2c\x93\x8b\x78\xef\x97\x1b\x50\xb2\xa2\x68\xed\x24\x29\x59\xc5\x90\xd4\x36\xed\x99\x45\xc3\x2f\x2c\x70\x34\xa6\x08\xac\x66\x21\x24\xeb\xc8\xb8\x46\xf9\xd4\xef\xfd\xb2\xe7\x39\xf4\x8c\x06\x48\xda\x6e\x2f\x76\x77\xba\xd3\x20\x7e\x27\xeb\xfc\x52\x78\x72\x65\x83\x96\x76\x63\x9c\x81\xb4\x11\x4f\xf6\xa1\x6d\x82\x7b\x0d\x02\xd6\x0e\xed\x64\xae\x57\x42\xaa\x1e\x3c\x87\xa9\x95\x2b\x61\x65\xb5\xa5\x5b\x8b\x75\x05\x52\xc5\xe5\xdc\x59\xae\x3d\x84\x86\x3f\x8e\xbb\x87\x48\xdd\xe3\xd3\xbe\x61\x03\xf5\x49\xe7\x57\xb7\x19\xa8\xd5\xae\x6f\xda\x3b\xa7\xdc\x3a\xd5\x76\x1d\x87\x9f\x8e\x8c\x23\xb9\x6e\x2b\x49\x53\xf5\x21\xce\xa5\x76\x39\x6b\x5d\x82\xbc\xcf\x3b\x53\x6d\xdf\xe0\x5c\xca\xf4\x9a\x75\x45\xa4\xdd\x6b\x5d\x0a\xf2\xba\x77\x54\xd2\x85\xee\x11\x74\xe7\x9f\xa9\xb6\x17\xcf\x5b\x77\x48\xab\xed\x99\xe9\x4b\x5f\x92\x8b\x3c\xec\xfb\xe8\x9c\xf4\x30\x5d\xea\xf3\xf0\x0d\xe6\x24\x37\x7b\x4d\xbf\x68\xfc\xfa\x18\x9d\xf2\x70\x57\xc7\x85\x16\x3a\x43\x8a\xee\x5a\xeb\x1d\x06\x3a\x73\x6e\x08\x3f\xc4\xc0\xd7\xd7\x67\xeb\xdf\xd9\xf5\x79\xf9\x56\xbc\xc4\xbd\xb3\xeb\xf3\x60\x06\x7b\x08\x9d\xb6\xaf\xe1\xfa\x86\xf5\xd9\x96\xf4\x11\xeb\xf3\xff\x00\x00\x00\xff\xff\x3f\x3f\xdb\x65\xbd\x0c\x00\x00") +var _nameServiceGeneratedTransport_grpcGotemplate = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xac\x96\xc1\x6e\xdb\x38\x13\xc7\xcf\xe2\x53\xcc\x67\x04\x1f\xec\xc0\x91\xf6\x1c\x20\x97\xa6\xdd\xb4\xc0\xa6\x1b\x64\x83\xdd\x43\x51\x14\x8c\x34\x96\x09\x4b\xa4\x42\xd2\xae\xbd\x84\xde\x7d\x31\xa4\x64\xcb\xb6\x62\x39\x45\x0e\x81\x62\x6a\x38\xfc\xcf\xfc\x66\x46\xac\x78\xba\xe0\x39\x82\x59\xa5\x8c\x25\x09\x3c\xcd\x85\x81\x99\x28\x10\x2a\xad\x56\x22\x43\x03\x06\xf5\x0a\xf5\x95\x11\x19\xc2\xb3\x90\x99\x90\xb9\x81\x99\xd2\x60\xe7\x08\xf9\xe3\xc3\x2d\x58\xcd\xa5\xa9\x94\xb6\x31\xb9\xf8\x62\x61\x69\x45\x21\xfe\x45\xe3\x4d\xb6\x6f\x93\x5c\x57\x69\xfc\x97\x77\x17\x33\x26\x4a\x5a\x84\x31\x8b\x46\xb9\x2a\xb8\xcc\x63\xa5\xf3\x64\x9d\x48\xb4\x49\xaa\xa4\xc5\xb5\x1d\xf9\x77\x2a\x2f\x30\xee\x98\x90\x9b\xa4\x44\xcb\x33\x6e\xf9\x88\xb1\x88\x16\xb6\xa7\xc0\x28\x17\x76\xbe\x7c\x8e\x53\x55\x26\xb9\xba\x5a\x08\x9b\xd0\xdf\xbe\x0c\xda\xd6\x86\x4b\x8a\x44\x8a\x2c\xaa\x9e\x61\xe4\x5c\xfc\xf0\xe1\x8b\x97\xf6\xc0\xed\x1c\xae\xea\x7a\xc4\x26\xcc\x27\xe7\x9e\x2f\xf0\xee\xf1\xe1\x36\x84\x00\x25\x5f\xa0\x01\x0e\x06\x2d\xa8\x19\xa0\xcc\x2a\x25\xa4\x35\xc0\x57\x5c\x14\xfc\xb9\x40\xe0\xf4\xde\xe7\xc8\xb9\x3b\xf5\x95\x97\x08\x71\x73\x5c\x7c\x87\x96\x16\xea\xba\xcd\xc8\x6c\x29\xd3\x83\x33\xc6\xa9\x5d\x43\x93\x8c\xf8\x36\x3c\xa7\x9d\x93\x3e\xb5\xff\x4d\xa0\x7a\x8e\x07\xcf\x00\xc7\xa2\x80\xf3\xcf\xca\x0a\x25\x0d\x5c\xdf\xc0\xb7\xef\x7b\xf9\x6b\x00\x05\x03\xc7\xa2\x08\xfa\x5e\x7f\xc0\x99\xd2\x38\x6e\x29\x3c\xa9\x46\xdc\x64\xca\xa2\x9a\x45\x1a\xed\x52\x4b\xf8\x3f\x6d\x0d\x1b\x9c\xcf\xb7\x73\xf0\xa4\xfe\x50\x3f\x51\x1f\x69\x84\xba\x66\x91\x73\x9a\xcb\x1c\xe1\x42\x90\xb2\xad\xc9\x3d\xda\xb9\xca\x0c\x59\x44\xce\xb5\x1e\x2e\xc4\x2e\xbe\xeb\x03\x95\x5f\xf1\x67\x93\x41\x16\x45\x51\x6a\xd7\x53\x7a\x6e\x13\x17\x3b\xd7\xdd\xdd\xa6\xd1\x1b\x7d\xc4\x54\x65\x9e\xc1\xbe\xd1\x23\xbe\x2c\xd1\x04\x9b\x4f\xf2\x35\x1b\x53\x29\x69\xd0\x1b\xed\x65\x3a\x8e\x63\x5a\xa4\xfc\x38\x77\x45\x08\x29\x9a\x9a\xd5\xbe\xb2\x76\x79\x02\x51\x56\x05\x96\x48\x74\xa9\x7b\x86\x99\x0a\x69\x51\xcf\x78\x8a\xcc\x6e\x2a\xec\xba\x32\x56\x2f\x53\x0b\x8e\x0d\xa7\xb5\x3f\xab\x00\x07\x69\xfd\xcc\x65\x56\xa0\x66\xbb\x10\x82\xfe\xc6\x93\x1f\x0b\x1d\x01\x56\xed\xc2\x79\x53\x24\x83\x82\x7d\xaf\x8c\x0d\x5c\xee\x4e\x9b\xec\x4e\xe8\xc6\xd0\xdf\x42\x1a\x5f\xe0\xb2\xdb\x32\x17\x22\x6e\x00\x3f\x6d\xaa\x8e\xb4\x09\x8c\x8f\xed\x02\xe4\x7d\xc3\x29\xa0\xd6\x8a\x54\xb0\xe8\x07\x1d\x50\xf9\x15\xd2\x4f\xe5\xd6\x97\xde\xd0\x4b\x54\x45\x24\xd2\x8b\x9a\xb0\x48\xcc\xfc\xbe\xff\xdd\x80\x14\x05\x79\x6b\xbb\x49\x8a\xc2\xbb\xec\x76\x98\xc6\x2a\x3e\x53\xe0\x64\x4a\x1e\x58\xcd\x9c\x0b\xe8\x08\x5c\x93\xf9\x50\xf3\xc3\x69\x4f\x12\x18\x68\x0f\x10\x34\xf2\x0e\x66\x7e\xd8\xd3\x58\xfc\x4e\xe8\xec\x9c\x5b\xa2\xb2\x42\x4d\x03\xd3\xf7\x40\x18\x93\xbd\x75\xa8\x1b\xe7\x56\x01\x87\xa5\x41\x7d\x95\xa9\x92\x0b\x39\x60\x1f\xc3\x83\x16\x25\xd7\xa2\xd8\xd0\xae\xd9\xb2\x00\x21\xfd\xc4\xee\x4c\xdc\x81\x80\xc6\x3f\x8e\xab\x87\x82\x7a\xc4\x97\x5d\xc1\x3a\xaa\x93\xce\xaf\x6e\x31\x50\xa9\x5d\xdf\xb4\x7b\xfa\x68\xf5\x95\x5d\x87\xf0\xcb\x11\x38\x4a\xd7\x6d\x21\xa8\xab\xde\x85\x5c\x28\x97\x93\xe8\x82\xc9\xaf\xb1\xab\x8a\xcd\x1b\xc8\x85\x93\x5e\x43\x97\xfa\xb0\x07\xd1\x05\x27\xaf\xb3\x23\x49\x67\xd2\x23\xd3\x2d\xbf\xaa\xd8\x9c\xdd\x6f\xdd\x26\x2d\x36\x27\xba\x2f\x7c\x4d\xce\x62\x38\xf4\xe1\xe9\x65\x18\x36\x0d\x31\x7c\x03\x9c\x40\x73\x10\xfa\x59\xed\x37\x14\x51\x1f\xc3\xad\x8e\x33\x11\x9a\x8a\x32\xba\x2d\xad\x5f\x00\x68\xaa\x53\x4d\xf8\x2e\x00\x5f\x1f\x9f\x2d\xbf\x93\xe3\xf3\xfc\xa9\x78\x0e\xbd\x93\xe3\x73\xaf\x07\x07\x02\xea\xc7\xd7\xc4\xfa\x86\xf1\xd9\x4a\x7a\x8f\xf1\x99\x24\xf0\x19\x8b\x0a\xb5\x61\x21\x86\xa3\x6b\x6c\xff\xa5\xa1\xcc\xe0\xb2\x35\x8d\xef\x3f\x4e\x0e\x2d\x48\x2e\xdd\x80\x16\x53\x58\x79\xcd\xbe\x1a\x2e\xcb\xcc\x7f\xc5\xc5\x0c\x56\xdd\xaf\x3a\xdd\x4a\xe1\x66\xeb\xe3\x1f\x61\xe7\x7f\xf3\x62\x89\xe1\x2e\x40\x3e\xbe\xfd\xf6\x7d\xc2\xa2\xc8\xdf\x13\xb7\x01\xa5\x76\xcd\x6a\xf6\x5f\x00\x00\x00\xff\xff\xc5\x17\xad\xb5\xb8\x0d\x00\x00") func nameServiceGeneratedTransport_grpcGotemplateBytes() ([]byte, error) { return bindataRead( @@ -194,7 +194,7 @@ func nameServiceGeneratedTransport_grpcGotemplate() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "NAME-service/generated/transport_grpc.gotemplate", size: 3261, mode: os.FileMode(436), modTime: time.Unix(1477333032, 0)} + info := bindataFileInfo{name: "NAME-service/generated/transport_grpc.gotemplate", size: 3512, mode: os.FileMode(436), modTime: time.Unix(1477698324, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -214,7 +214,7 @@ func nameServiceGeneratedTransport_httpGotemplate() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "NAME-service/generated/transport_http.gotemplate", size: 105, mode: os.FileMode(436), modTime: time.Unix(1477435906, 0)} + info := bindataFileInfo{name: "NAME-service/generated/transport_http.gotemplate", size: 105, mode: os.FileMode(436), modTime: time.Unix(1477696627, 0)} a := &asset{bytes: bytes, info: info} return a, nil }