From ccd4145f2fa212b3b4469e8eef39f6bdd5b1236d Mon Sep 17 00:00:00 2001 From: Nick Godzieba Date: Sat, 6 Mar 2021 20:37:42 +0100 Subject: [PATCH 1/8] Added support for: - Custom HttpServerOptions per endpoint - Custom HttpRequestDecoders per Endpoint - Custom HttpResponseEncoders per endpoint --- .../middlewares/handlers/handlers.go | 2 +- .../transport/handlers/handlers.go | 2 +- gengokit/handlers/handler_test.go | 4 +- gengokit/handlers/templates/handlers.go | 2 +- gengokit/httptransport/templates/server.go | 6 +- gengokit/httptransport/templates_test.go | 2 +- .../NAME-service/svc/endpoints.gotemplate | 71 +++++++++++ gengokit/template/template.go | 116 +++++++++--------- 8 files changed, 138 insertions(+), 67 deletions(-) diff --git a/cmd/_integration-tests/middlewares/handlers/handlers.go b/cmd/_integration-tests/middlewares/handlers/handlers.go index 5a4dcace..2849c8c8 100644 --- a/cmd/_integration-tests/middlewares/handlers/handlers.go +++ b/cmd/_integration-tests/middlewares/handlers/handlers.go @@ -6,7 +6,7 @@ import ( pb "github.com/metaverse/truss/cmd/_integration-tests/middlewares/proto" ) -// NewService returns a naïve, stateless implementation of Service. +// NewService returns a naive, stateless implementation of Service. func NewService() pb.MiddlewaresTestServer { return middlewarestestService{} } diff --git a/cmd/_integration-tests/transport/handlers/handlers.go b/cmd/_integration-tests/transport/handlers/handlers.go index 32e491a0..9560ccc0 100644 --- a/cmd/_integration-tests/transport/handlers/handlers.go +++ b/cmd/_integration-tests/transport/handlers/handlers.go @@ -11,7 +11,7 @@ import ( pb "github.com/metaverse/truss/cmd/_integration-tests/transport/proto" ) -// NewService returns a naïve, stateless implementation of Service. +// NewService returns a naive, stateless implementation of Service. func NewService() pb.TransportPermutationsServer { return transportpermutationsService{} } diff --git a/gengokit/handlers/handler_test.go b/gengokit/handlers/handler_test.go index 84d0f4e3..d48ce63e 100644 --- a/gengokit/handlers/handler_test.go +++ b/gengokit/handlers/handler_test.go @@ -138,7 +138,7 @@ func TestApplyServerTempl(t *testing.T) { pb "github.com/metaverse/truss/gengokit/general-service" ) - // NewService returns a naïve, stateless implementation of Service. + // NewService returns a naive, stateless implementation of Service. func NewService() pb.ProtoServer { return protoService{} } @@ -304,7 +304,7 @@ func TestPruneDecls(t *testing.T) { pb "github.com/metaverse/truss/gengokit/general-service" ) - // NewService returns a naïve, stateless implementation of Service. + // NewService returns a naive, stateless implementation of Service. func NewService() pb.ProtoServer { return protoService{} } diff --git a/gengokit/handlers/templates/handlers.go b/gengokit/handlers/templates/handlers.go index d7d2114d..33088be8 100644 --- a/gengokit/handlers/templates/handlers.go +++ b/gengokit/handlers/templates/handlers.go @@ -20,7 +20,7 @@ import ( pb "{{.PBImportPath -}}" ) -// NewService returns a naïve, stateless implementation of Service. +// NewService returns a naive, stateless implementation of Service. func NewService() pb.{{GoName .Service.Name}}Server { return {{ToLower .Service.Name}}Service{} } diff --git a/gengokit/httptransport/templates/server.go b/gengokit/httptransport/templates/server.go index c81fdba3..0e9f47e6 100644 --- a/gengokit/httptransport/templates/server.go +++ b/gengokit/httptransport/templates/server.go @@ -121,9 +121,9 @@ func MakeHTTPHandler(endpoints Endpoints, options ...httptransport.ServerOption) {{range $binding := $method.Bindings}} m.Methods("{{$binding.Verb | ToUpper}}").Path("{{$binding.PathTemplate}}").Handler(httptransport.NewServer( endpoints.{{$method.Name}}Endpoint, - DecodeHTTP{{$binding.Label}}Request, - EncodeHTTPGenericResponse, - serverOptions..., + endpoints.GetHttpRequestDecoder("{{$method.Name}}", DecodeHTTP{{$binding.Label}}Request), + endpoints.GetHttpResponseEncoder("{{$method.Name}}", EncodeHTTPGenericResponse), + append(serverOptions, endpoints.GetHttpServerOptions("{{$method.Name}}")...)..., )) {{- end}} {{- end}} diff --git a/gengokit/httptransport/templates_test.go b/gengokit/httptransport/templates_test.go index 3ea31c5e..e8b55310 100644 --- a/gengokit/httptransport/templates_test.go +++ b/gengokit/httptransport/templates_test.go @@ -7,7 +7,7 @@ import ( "github.com/metaverse/truss/gengokit/gentesthelper" ) -// Test that rendering certain templates will ouput the code we expect. The +// Test that rendering certain templates will output the code we expect. The // code we expect is either the source code literal defined in each test, or // it's the source code of certain actual functions within this package (see // embeddable-funcs.go for more info). diff --git a/gengokit/template/NAME-service/svc/endpoints.gotemplate b/gengokit/template/NAME-service/svc/endpoints.gotemplate index f675156d..9ee13984 100644 --- a/gengokit/template/NAME-service/svc/endpoints.gotemplate +++ b/gengokit/template/NAME-service/svc/endpoints.gotemplate @@ -33,6 +33,9 @@ import ( // single type that implements the Service interface. For example, you might // construct individual endpoints using transport/http.NewClient, combine them into an Endpoints, and return it to the caller as a Service. type Endpoints struct { + httpServerOptions map[string][]httptransport.ServerOption + httpRequestDecoders map[string]httptransport.DecodeRequestFunc + httpResponseEncoders map[string]httptransport.EncodeResponseFunc {{range $i := .Service.Methods}} {{$i.Name}}Endpoint endpoint.Endpoint {{- end}} @@ -124,3 +127,71 @@ func (e *Endpoints) WrapAllLabeledExcept(middleware func(string, endpoint.Endpoi {{- end}} } } + +// WrapAllWithHttpOptionExcept wraps each Endpoint entry of filed HttpServerOptions of struct Endpoints with a +// httptransport.ServerOption. +// Use this for applying a set of server options to every endpoint in the service. +// Optionally, endpoints can be passed in by name to be excluded from being wrapped. +// WrapAllWithHttpOptionExcept(serverOption, "Status", "Ping") +func (e *Endpoints) WrapAllWithHttpOptionExcept(serverOption httptransport.ServerOption, excluded ...string) { + included := map[string]struct{}{ + {{- range $i := .Service.Methods}} + "{{$i.Name}}": {}, + {{- end}} + } + + for _, ex := range excluded { + if _, ok := included[ex]; !ok { + panic(fmt.Sprintf("Excluded endpoint '%s' does not exist; see middlewares/endpoints.go", ex)) + } + delete(included, ex) + } + + if e.httpServerOptions == nil { + e.httpServerOptions = make(map[string][]httptransport.ServerOption) + } + for inc := range included { + var options []httptransport.ServerOption + if o, ok := e.httpServerOptions[inc]; ok { + options = append(o, serverOption) + } else { + options = make([]httptransport.ServerOption, 1) + options[0] = serverOption + } + e.httpServerOptions[inc] = options + } +} + +// GetHttpServerOptions returns all httptransport.ServerOption associated with the given endpoint. +func (e Endpoints) GetHttpServerOptions(endpoint string) []httptransport.ServerOption { + if options, ok := e.httpServerOptions[endpoint]; ok { + return options + } + return make([]httptransport.ServerOption, 0) +} + +// SetHttpRequestDecoder assigns a httptransport.DecodeRequestFunc to an endpoint. +func (e Endpoints) SetHttpRequestDecoder(endpoint string, decoder httptransport.DecodeRequestFunc) { + e.httpRequestDecoders[endpoint] = decoder +} + +// GetHttpRequestDecoder returns the httptransport.DecodeRequestFunc associated with the given endpoint. +func (e Endpoints) GetHttpRequestDecoder(endpoint string, fallback httptransport.DecodeRequestFunc) httptransport.DecodeRequestFunc { + if decoder, ok := e.httpRequestDecoders[endpoint]; ok { + return decoder + } + return fallback +} + +// SetHttpResponseEncoder assigns a httptransport.EncodeResponseFunc to an endpoint. +func (e Endpoints) SetHttpResponseEncoder(endpoint string, encoder httptransport.EncodeResponseFunc) { + e.httpResponseEncoders[endpoint] = encoder +} + +// GetHttpResponseEncoder returns the httptransport.EncodeResponseFunc associated with the given endpoint. +func (e Endpoints) GetHttpResponseEncoder(endpoint string, fallback httptransport.EncodeResponseFunc) httptransport.EncodeResponseFunc { + if encoder, ok := e.httpResponseEncoders[endpoint]; ok { + return encoder + } + return fallback +} diff --git a/gengokit/template/template.go b/gengokit/template/template.go index d251e337..28cdfe15 100644 --- a/gengokit/template/template.go +++ b/gengokit/template/template.go @@ -1,15 +1,15 @@ // Code generated by go-bindata. DO NOT EDIT. // sources: -// NAME-service/cmd/NAME/main.gotemplate (356B) -// NAME-service/handlers/handlers.gotemplate (62B) -// NAME-service/handlers/hooks.gotemplate (62B) -// NAME-service/handlers/middlewares.gotemplate (75B) -// NAME-service/svc/client/grpc/client.gotemplate (3.184kB) -// NAME-service/svc/client/http/client.gotemplate (105B) -// NAME-service/svc/endpoints.gotemplate (4.25kB) -// NAME-service/svc/server/run.gotemplate (3.253kB) -// NAME-service/svc/transport_grpc.gotemplate (2.962kB) -// NAME-service/svc/transport_http.gotemplate (106B) +// NAME-service/cmd/NAME/main.gotemplate (376B) +// NAME-service/handlers/handlers.gotemplate (63B) +// NAME-service/handlers/hooks.gotemplate (63B) +// NAME-service/handlers/middlewares.gotemplate (76B) +// NAME-service/svc/client/grpc/client.gotemplate (3.299kB) +// NAME-service/svc/client/http/client.gotemplate (107B) +// NAME-service/svc/endpoints.gotemplate (7.278kB) +// NAME-service/svc/server/run.gotemplate (3.385kB) +// NAME-service/svc/transport_grpc.gotemplate (3.056kB) +// NAME-service/svc/transport_http.gotemplate (108B) package template @@ -78,7 +78,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _cmdNameMainGotemplate = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x90\x31\x6f\x83\x30\x14\x84\x67\xde\xaf\x38\x31\xc1\x50\xbc\x77\x0d\x1d\xb2\x34\x51\x9a\x76\x77\xe0\x00\xab\xc4\x20\xdb\x10\x45\xc8\xff\xbd\x82\x44\x55\xa6\x77\x4f\x77\xba\x4f\xef\x29\x85\xdd\x50\x13\x2d\x2d\x9d\x0e\xac\x71\xb9\x23\xb8\xc9\xfb\x02\xe5\x01\x9f\x87\x33\x3e\xca\xfd\xb9\x10\xa5\x70\xa2\x9b\xac\x35\xb6\x7d\x04\x70\x33\x7d\x8f\x61\xa6\xbb\x39\x13\x88\xd0\x19\x8f\xc6\xf4\xdc\xc2\x3f\x74\xde\x0c\xf6\x1d\xcb\x52\x3c\x75\x8c\x2f\x06\x4a\x1d\xf8\xea\xae\x7b\x8c\x22\xa3\xae\x7e\x75\x4b\x5c\xb5\xb1\x22\xe6\x3a\x0e\x2e\x20\x93\x24\x6d\x7a\xdd\xa6\x22\x89\x52\x38\xaf\xa8\x2f\xba\xd9\x54\x94\x24\x5d\x96\x62\xbf\xe5\x8e\x3a\x74\x78\x8b\x11\xca\xcf\x95\xf2\x74\x33\x5d\x2a\xb9\x48\x33\xd9\x6a\x6b\xcc\x72\x2c\x5b\xc5\xf7\x58\xeb\x40\xe8\xba\x76\xf4\x9e\x1e\xa6\x41\xe8\x78\x47\xa7\x67\xe2\x42\xda\xff\xd3\x02\xed\xfa\x95\x95\xef\x25\x59\x47\x71\xd4\xce\x33\xcb\x45\x92\x07\xa4\x38\x4d\x36\x7b\xca\x92\x8d\x9e\xfa\xb0\x1b\x6c\x63\xda\x5c\xa2\xfc\x05\x00\x00\xff\xff\x49\xa3\x9c\x96\x64\x01\x00\x00") +var _cmdNameMainGotemplate = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x90\xb1\x6e\xc3\x20\x18\x84\x67\x23\xf1\x0e\xa7\x4c\xce\x50\xb3\x77\x8d\x3b\x64\x69\xa2\x34\xed\x4e\xec\xc3\x46\x75\x70\x04\xd8\x51\x64\xf9\xdd\x2b\xec\xa8\xca\xc4\x7f\xdc\xc7\x1d\xa0\x14\x76\x7d\x4d\x34\x74\xf4\x3a\xb2\xc6\xe5\x81\xe8\x87\x10\x0a\x94\x07\x7c\x1e\xce\xf8\x28\xf7\xe7\x42\x0a\xa5\x70\xa2\x1f\x9c\xb3\xae\x59\x09\xdc\x6d\xd7\xa1\x1f\xe9\xef\xde\x46\x22\xb6\x36\xc0\xd8\x8e\x2b\xfd\x43\x1f\x6c\xef\xde\x31\x4d\xc5\x73\x9e\xe7\x57\x07\xa5\x8e\x7c\xb5\x93\x4e\x88\x14\x37\x5d\xfd\xea\x86\xb8\x6a\xeb\x92\xb6\xd7\x5b\xef\x23\x72\x29\xb2\x8d\xe9\x74\xb3\x49\x9b\x99\x52\x38\xa7\xce\x2f\xfa\xd1\x56\x4c\xe6\x34\x15\xfb\x85\x3d\xea\xd8\xe2\x6d\x9e\xa1\xc2\x58\xa9\x40\x3f\xd2\x6f\xa4\xd8\xa6\x83\x66\x70\xd5\x12\x9d\x6f\x31\xad\x39\xdf\xb7\x5a\x47\x42\xd7\xb5\x67\x08\x0c\xb0\x06\xb1\xe5\x03\xad\x1e\x89\x0b\xe9\xfe\x1f\x1a\xe9\xd2\x27\xa5\x6b\x04\x29\xb2\xb4\x16\x47\xed\x03\xf3\x25\x3c\x5b\xbb\x8a\xd3\xe0\xf2\xe7\x58\xd2\xe8\xa1\x8b\xbb\xde\x19\xdb\x6c\xa5\x98\xa5\xf8\x0b\x00\x00\xff\xff\x01\x9c\x46\x61\x78\x01\x00\x00") func cmdNameMainGotemplateBytes() ([]byte, error) { return bindataRead( @@ -93,12 +93,12 @@ func cmdNameMainGotemplate() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "cmd/NAME/main.gotemplate", size: 356, mode: os.FileMode(0644), modTime: time.Unix(1464111000, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3c, 0xd, 0xff, 0x1e, 0xe5, 0xa9, 0x62, 0x3d, 0xb4, 0x16, 0xf5, 0xfd, 0x84, 0x56, 0x3e, 0xc4, 0x7d, 0x9e, 0x50, 0x8f, 0x7b, 0xc0, 0xcc, 0x27, 0x7f, 0xe7, 0x57, 0x20, 0x66, 0xd, 0x77, 0x87}} + info := bindataFileInfo{name: "cmd/NAME/main.gotemplate", size: 376, mode: os.FileMode(0644), modTime: time.Unix(1464111000, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0x17, 0x89, 0x8a, 0xaa, 0x99, 0xb2, 0x34, 0xd7, 0xec, 0xa8, 0x8f, 0x9a, 0x29, 0x93, 0x35, 0x8d, 0x2a, 0xd3, 0x33, 0x6e, 0x75, 0x6, 0x78, 0xd, 0x6a, 0xe9, 0xda, 0x80, 0xbd, 0x1c, 0x87}} return a, nil } -var _handlersHandlersGotemplate = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x04\xc0\xc1\x0d\x80\x20\x0c\x05\xd0\xbb\x53\xf4\x4c\xa2\x1d\xc6\x09\x88\x7c\xab\x11\xa9\x69\xeb\x89\xb0\x3b\xaf\x77\x4e\xb4\x03\x24\xba\x86\xfd\xee\x2c\x68\xa2\xcf\x1d\x7c\xe5\x56\x2a\x8c\x03\xef\x57\x73\xc0\x37\x51\x3a\xd5\xe8\xd0\x02\x4a\x3c\xc6\x32\x03\x00\x00\xff\xff\xd6\x21\xab\x2e\x3e\x00\x00\x00") +var _handlersHandlersGotemplate = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xaa\xae\xd6\xd7\x52\x08\x4e\x4d\x55\x48\xcf\xd7\x2d\x29\x2a\x2d\x2e\xd6\x4f\x4f\xcd\x4b\xcf\xcf\xce\x2c\xd1\xcf\x48\xcc\x4b\xc9\x49\x2d\xd2\x2f\x49\xcd\x2d\xc8\x49\x2c\x49\x2d\xd6\x4b\xcf\x57\x48\xcb\x2f\x52\x48\xce\x4f\x49\x55\xd0\xd2\xaf\xad\xe5\xe5\x02\x04\x00\x00\xff\xff\x94\x4c\x08\x12\x3f\x00\x00\x00") func handlersHandlersGotemplateBytes() ([]byte, error) { return bindataRead( @@ -113,12 +113,12 @@ func handlersHandlersGotemplate() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "handlers/handlers.gotemplate", size: 62, mode: os.FileMode(0644), modTime: time.Unix(1464111000, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1e, 0xcb, 0xd5, 0x72, 0x80, 0xc6, 0xf9, 0x82, 0x4b, 0xe0, 0x8b, 0x90, 0xb8, 0x9b, 0xbc, 0x5d, 0x8d, 0x12, 0xd4, 0x8e, 0x54, 0xf6, 0x72, 0xcb, 0xef, 0xf5, 0x12, 0xd0, 0xe1, 0xb8, 0x41, 0xc8}} + info := bindataFileInfo{name: "handlers/handlers.gotemplate", size: 63, mode: os.FileMode(0644), modTime: time.Unix(1464111000, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcb, 0x88, 0x2f, 0x79, 0x1b, 0x2b, 0xcc, 0xe8, 0x7c, 0x5c, 0x2c, 0x77, 0xdc, 0xe7, 0xd5, 0x2b, 0x5d, 0xa2, 0x78, 0xe, 0x3b, 0x19, 0x5f, 0x3e, 0x33, 0x37, 0xbb, 0x72, 0x86, 0x49, 0xfe, 0xdd}} return a, nil } -var _handlersHooksGotemplate = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x04\xc0\xc1\x0d\x80\x20\x0c\x05\xd0\xbb\x53\xf4\x4c\xa2\x1d\xc6\x09\x88\x7c\xab\x11\xa9\x69\xeb\x89\xb0\x3b\xaf\x77\x4e\xb4\x03\x24\xba\x86\xfd\xee\x2c\x68\xa2\xcf\x1d\x7c\xe5\x56\x2a\x8c\x03\xef\x57\x73\xc0\x37\x51\x3a\xd5\xe8\xd0\x02\x4a\x3c\xc6\x32\x03\x00\x00\xff\xff\xd6\x21\xab\x2e\x3e\x00\x00\x00") +var _handlersHooksGotemplate = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xaa\xae\xd6\xd7\x52\x08\x4e\x4d\x55\x48\xcf\xd7\x2d\x29\x2a\x2d\x2e\xd6\x4f\x4f\xcd\x4b\xcf\xcf\xce\x2c\xd1\xcf\x48\xcc\x4b\xc9\x49\x2d\xd2\x2f\x49\xcd\x2d\xc8\x49\x2c\x49\x2d\xd6\x4b\xcf\x57\x48\xcb\x2f\x52\x48\xce\x4f\x49\x55\xd0\xd2\xaf\xad\xe5\xe5\x02\x04\x00\x00\xff\xff\x94\x4c\x08\x12\x3f\x00\x00\x00") func handlersHooksGotemplateBytes() ([]byte, error) { return bindataRead( @@ -133,12 +133,12 @@ func handlersHooksGotemplate() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "handlers/hooks.gotemplate", size: 62, mode: os.FileMode(0644), modTime: time.Unix(1464111000, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1e, 0xcb, 0xd5, 0x72, 0x80, 0xc6, 0xf9, 0x82, 0x4b, 0xe0, 0x8b, 0x90, 0xb8, 0x9b, 0xbc, 0x5d, 0x8d, 0x12, 0xd4, 0x8e, 0x54, 0xf6, 0x72, 0xcb, 0xef, 0xf5, 0x12, 0xd0, 0xe1, 0xb8, 0x41, 0xc8}} + info := bindataFileInfo{name: "handlers/hooks.gotemplate", size: 63, mode: os.FileMode(0644), modTime: time.Unix(1464111000, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcb, 0x88, 0x2f, 0x79, 0x1b, 0x2b, 0xcc, 0xe8, 0x7c, 0x5c, 0x2c, 0x77, 0xdc, 0xe7, 0xd5, 0x2b, 0x5d, 0xa2, 0x78, 0xe, 0x3b, 0x19, 0x5f, 0x3e, 0x33, 0x37, 0xbb, 0x72, 0x86, 0x49, 0xfe, 0xdd}} return a, nil } -var _handlersMiddlewaresGotemplate = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x04\xc0\x41\x0e\x02\x21\x0c\x05\xd0\xbd\xa7\xe8\x9a\x44\x7b\x18\x4f\x40\xec\xb7\x12\x81\x4e\xda\x4e\x66\x41\xb8\xfb\xbc\xb5\xb8\xd0\x1b\x20\xb5\x67\xfa\x19\xc1\x8a\xa9\xf6\x6f\xc9\xbf\x3a\xa5\xc3\x83\x13\xe3\xe8\x35\x11\x3c\x9a\x48\xc7\x55\x1d\xf1\x52\xa3\xaf\x39\x7d\x4c\x40\x85\xf7\x7e\xdc\x01\x00\x00\xff\xff\xcf\x9e\xe9\x81\x4b\x00\x00\x00") +var _handlersMiddlewaresGotemplate = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x04\xc0\x41\x0a\x02\x31\x0c\x05\xd0\xbd\xe0\x1d\xb2\x2e\x68\x0e\xe3\x09\x8a\xf9\xc6\x62\xdb\x48\x92\x61\x16\xa5\x77\x9f\xb7\x16\x17\x7a\x01\xa4\xf6\x48\x3f\x22\x58\x31\xd5\x7e\x2d\xf9\x5b\xa7\x74\x78\x70\x62\xfc\x7b\x4d\x04\x8f\x26\xd2\x71\x56\x47\x3c\xd5\xe8\x63\x4e\x6f\x13\x50\xe1\xbd\xef\xb7\x2b\x00\x00\xff\xff\xeb\xa6\xcc\x76\x4c\x00\x00\x00") func handlersMiddlewaresGotemplateBytes() ([]byte, error) { return bindataRead( @@ -153,12 +153,12 @@ func handlersMiddlewaresGotemplate() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "handlers/middlewares.gotemplate", size: 75, mode: os.FileMode(0644), modTime: time.Unix(1464111000, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcc, 0xfe, 0x9d, 0x1a, 0xaf, 0x47, 0xe8, 0x97, 0x82, 0x24, 0x50, 0x17, 0xb4, 0x49, 0x73, 0x3b, 0x68, 0xb7, 0xe5, 0x3a, 0x3d, 0xb6, 0x15, 0x9d, 0xb1, 0x8f, 0xc4, 0x27, 0xaf, 0xa7, 0x3c, 0xc1}} + info := bindataFileInfo{name: "handlers/middlewares.gotemplate", size: 76, mode: os.FileMode(0644), modTime: time.Unix(1464111000, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb3, 0xc8, 0x25, 0x5, 0xd9, 0x58, 0x94, 0xe2, 0x24, 0xe6, 0x20, 0x97, 0xcb, 0x5f, 0x27, 0x16, 0x26, 0x8f, 0x35, 0x28, 0xb6, 0x9c, 0xc7, 0xe2, 0xd5, 0x16, 0xe7, 0xae, 0xf7, 0x74, 0x21, 0x28}} return a, nil } -var _svcClientGrpcClientGotemplate = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x4d\x6f\xdb\x38\x10\x3d\x8b\xbf\x62\xd6\x08\x16\x52\xa0\xd0\xf7\x2c\x7c\xa9\xd3\x2d\xba\xd8\xa6\x46\x1a\x74\x0f\x45\x51\x30\xd4\x58\x26\x2c\x93\x2a\x49\x3b\x31\x04\xfd\xf7\xc5\x90\x94\x23\x27\x8e\xdb\x43\x10\x8b\xf3\x38\x1f\xef\x0d\x39\x9c\x4e\x61\x6e\x2a\x84\x1a\x35\x5a\xe1\xb1\x82\x87\x3d\x78\xbb\x75\x8e\xc3\xcd\x67\xb8\xfd\x7c\x0f\xef\x6f\x3e\xde\x73\x36\x9d\xc2\x1d\xda\xad\xd6\x4a\xd7\x11\x00\x8f\xaa\x69\xc0\xec\xd0\x3e\x5a\xe5\x11\xfc\x4a\x39\x58\xaa\x06\x03\xf8\x2b\x5a\xa7\x8c\xbe\x86\xae\xe3\xe9\x77\xdf\x8f\x0c\x70\x23\x3c\x8e\xad\xf4\xdd\xf7\x8c\x20\x0b\x21\xd7\xa2\x46\xa8\x6d\x2b\xa1\xb5\x66\xa7\x2a\x74\x20\xa0\xbe\x5b\xcc\x41\x36\x0a\xb5\x87\xa5\xb1\xe0\x57\x48\x0e\xbe\xa0\xdd\x29\x89\xfc\x56\x6c\xb0\xef\xc1\xa5\x4f\xd6\x8e\xdc\x30\xa6\x36\xad\xb1\x1e\x72\x96\x4d\xa4\xd1\x1e\x9f\xfc\x84\x65\x93\xda\x98\xba\x41\x5e\x9b\x46\xe8\x9a\x1b\x5b\x4f\x09\xfd\xb6\x65\xba\x41\x2f\x2a\xe1\x45\x80\x28\xbf\xda\x3e\x70\x69\x36\xd3\x76\x5d\x4f\xd1\x5a\x63\xdd\x84\x1d\x5b\x6a\x73\xb5\x56\x7e\x4a\x7f\xa8\xab\xd6\x28\x4d\x81\xc9\x97\xb7\x42\xbb\x90\xd4\x1b\xf8\x03\x20\x25\xc5\xb2\xe9\x14\xee\x89\xe6\x54\x32\xcb\x26\x5d\xc7\x3f\x86\xca\x16\xc2\xaf\xe0\xaa\xef\x61\xea\x76\x54\x40\xfb\x00\x64\x5c\xbc\x3b\x36\x4f\x58\x11\x38\xbe\xc5\x47\xb0\xe8\xb7\x56\x3b\x10\x7a\x20\x0d\x1e\x84\x5c\xc7\x26\x38\xa6\x5b\x1a\xad\x51\x7a\x65\x34\x87\x8f\x1e\x94\x23\xf2\xc9\x8f\x45\xd7\x1a\xed\xd4\x83\x6a\x94\xdf\x83\x59\x06\x55\xa4\x68\x1a\xb4\xe0\x0d\x54\x4a\x34\x25\x08\x5d\x41\x23\x3c\x5a\x90\x8d\x71\x58\x46\xd0\xb3\x4f\xb6\xdc\x6a\x49\x39\xe5\xb4\x08\x97\x54\x2f\x9f\x87\xd0\x73\xa3\x75\x09\xa6\x25\x9c\x03\xce\xd3\xf2\xe7\xb0\x50\x40\xde\x3e\xf0\x57\x3d\x40\x5f\x68\x4b\x08\x8a\x14\xd0\xb1\x6c\x27\x2c\x48\x99\xaa\x99\x1b\xbd\x54\x35\x63\x19\x35\xd1\x8f\x12\x96\x70\x3d\x03\x2b\x74\x8d\x87\x38\x1d\xcb\x32\xb4\x96\x0c\xcb\xfc\x4f\x29\x0b\x96\x65\x6a\x49\x0e\xe1\x8f\x19\x68\xd5\x04\x44\x16\x19\xa4\xef\x14\xcc\xf1\xff\xac\x68\x73\xb4\xb6\x84\x89\x14\x5a\x1b\x0f\xa2\x6d\x9b\x7d\xf2\x3c\x21\x47\x3d\xcb\x7a\xc6\x32\x39\x2a\xc4\x51\xa4\x6f\xdf\x8f\xda\xe2\xa8\x52\x0a\x77\xca\xfa\x0e\x97\xc6\x62\x4e\xc9\xa4\xb6\xfe\x2a\x9a\x2d\xba\x7b\xf3\xe1\x6e\x31\xff\x94\xba\x35\x97\x92\xaf\x50\x54\x68\x5d\x51\x94\x14\x3e\xeb\xba\x2b\x78\x54\x7e\x05\x17\x1e\x29\x38\xef\x7b\x96\x8d\x56\xdb\x75\x4d\x64\x92\xe9\xc2\x23\x4f\x67\x32\xf2\x4b\xd1\x08\x19\x39\xbb\x50\x03\x68\x50\xe1\x13\xfa\x95\xa9\x5c\x04\x06\xee\xbb\xee\xde\xfc\x6b\x1e\xd1\xc2\x85\x4a\x22\xbd\x4f\xa7\x01\x86\x63\xc1\x87\x95\xb0\x2b\xf0\x4b\x61\xde\xde\x38\x83\x63\x46\x6e\xf1\x31\x92\x92\xc7\xbd\xc4\x88\x2e\xd3\xef\x49\xd7\x0d\x35\xf5\x3d\xef\xba\x71\xbe\x71\x71\x32\x86\xaa\x97\x8b\xef\xb5\x34\x15\x12\xa9\x23\xeb\x1d\xfe\xdc\xa2\xf3\x03\xe6\x06\x4f\x62\xc2\x09\xc1\x01\x14\x1a\xf6\x83\x09\xe4\x5e\x28\x3e\x98\xef\xf7\xed\x90\x48\xd7\x0f\xd8\xa3\x16\xe1\x9c\xa7\xf5\xe2\x40\x55\x5e\x84\x95\xa4\x08\xea\x2a\xa9\x98\x7e\x0d\x3f\xd8\xd0\xa9\x6e\x27\x0f\x7b\x5d\x47\x80\xb1\x86\x2f\x05\xa4\x0b\x23\xb8\x7b\xc5\xfd\x35\x00\x9c\x13\xb5\x7c\x8e\x9d\xf5\x25\x1d\x10\x16\xef\x76\x22\x07\xa2\x4a\x10\xe9\x62\xe7\x73\x88\x53\xe3\x2c\xb3\x74\x1d\x09\x38\xbe\x2d\x79\xdc\x31\x40\xfe\xa6\xfb\xc5\xaf\x44\xb8\xc9\x76\x68\xbd\x03\x41\x7e\xc3\x1d\x77\xa2\x0e\xb0\x48\x87\xd6\x1b\x10\xb0\x75\x68\xaf\x2a\xb3\x11\x4a\xbf\x01\x8d\x31\x38\x2c\xac\xda\x08\xab\x9a\x3d\xed\x59\x6e\x1b\x50\x1a\x44\xba\x74\xd2\x1d\x77\xb6\x90\xfc\x07\xa4\x43\xcc\xe7\xf1\x7f\x19\x5a\xfc\x2e\x24\xa3\xb4\x47\xbb\x14\x12\xbb\xbe\x80\x7c\xf4\x35\xbe\xe8\x62\xde\xd7\xb3\xe7\x7d\x3c\xbf\xfc\x75\xcb\x15\x87\x0e\x09\x0e\x06\xc5\x0e\xfd\xf3\x42\xb9\x78\x18\x7e\x4b\xb9\x73\xe7\xe6\xa4\x70\x71\x43\x42\xbc\xa5\xdb\xaf\x35\x89\x01\x82\x80\x67\x44\x0e\xa8\xdf\x12\xee\x5c\x1d\xa7\x74\x1b\x32\xf8\x4d\xd5\x7e\x86\x19\x94\xf2\x39\xa1\x58\x30\xbc\x21\xd8\xcf\x57\x72\x31\xbf\x6f\xf1\x68\xda\x81\xf3\x76\x2b\x3d\x05\x4b\x83\x00\xbe\x7d\x77\xde\x2a\x5d\xa7\x93\x39\x9e\x36\x51\x18\xaa\x3b\x7c\x05\x01\x36\xa6\x52\x4b\x85\x2e\xce\xee\xc3\xb3\x80\x26\x69\x88\x76\xb4\x9f\xb6\xe6\x97\xe3\x04\x8a\x58\x2e\x8b\x6c\xce\xfd\xd3\x30\xa7\xbe\xa0\xae\xf2\x35\xee\xc3\x70\x8f\x19\x15\xc7\xce\xba\x43\xad\xc1\xad\x81\x53\x8e\xc3\x40\x36\xc3\x94\x83\x19\x90\x4b\x36\x1e\xd1\x34\xf6\xfa\x14\xff\xdc\xac\x0c\xb9\x0c\xe4\x14\x70\x6a\xea\x8e\xbb\xf3\x45\x76\xd2\x3f\xbd\x6e\x86\x4d\x05\x97\xc3\xcb\x91\x7f\xba\x29\x5e\x22\x42\xf2\x34\x27\x5b\xa1\xc6\xca\x64\xc3\x13\x65\xfd\xfc\x44\x09\xe9\x85\xe9\xa8\x96\xb0\x2b\xc1\x04\x9b\xf4\x4f\x3c\x54\x93\xaf\x0b\x9e\xa7\xdc\xff\x22\x63\x1c\xa4\xd1\xf1\x8c\x1e\x23\xc4\x77\xf8\x2c\x61\x5d\xc2\x2e\x4c\x90\x3e\x3c\x4b\xe2\x23\x27\x42\xc7\xcf\x9c\xcb\x4d\x05\x33\x38\x14\xf0\x8f\x51\x3a\xbf\xdc\x54\xe5\xf3\xd2\x82\xf6\x44\xaf\x9c\xf3\xa2\x18\xdc\x25\x66\xa4\x7f\x8a\xec\xff\x1f\x00\x00\xff\xff\x00\xce\x0e\xa6\x70\x0c\x00\x00") +var _svcClientGrpcClientGotemplate = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\xcd\x6e\xdb\x38\x10\x3e\xdb\x80\xdf\x61\xd6\x08\x16\x52\xa0\xd0\xf7\x2c\x7c\xa9\xd3\x2d\xba\xd8\xa6\x46\x1a\x74\x0f\x45\x51\x30\xd4\x48\x26\x2c\x93\x2a\x49\xdb\x31\x04\xbd\xfb\x62\x48\xca\x96\x12\xc7\xed\xc1\xb0\xc8\x19\xce\xcf\xf7\xcd\x70\x38\x9b\xc1\x42\xe7\x08\x25\x2a\x34\xdc\x61\x0e\x4f\x07\x70\x66\x6b\x2d\x83\xbb\xcf\x70\xff\xf9\x11\xde\xdf\x7d\x7c\x64\x93\xf1\x6c\x06\x0f\x68\xb6\x4a\x49\x55\x06\x0d\xd8\xcb\xaa\x02\xbd\x43\xb3\x37\xd2\x21\xb8\x95\xb4\x50\xc8\x0a\x83\xf6\x57\x34\x56\x6a\x75\x0b\x4d\xc3\xe2\x77\xdb\xf6\x25\x70\xc7\x1d\xf6\xc5\xb4\x26\x15\xaf\xb4\xe4\x62\xcd\x4b\x84\xd2\xd4\x02\x6a\xa3\x77\x32\x47\x0b\x1c\xca\x87\xe5\x02\x44\x25\x51\x39\x28\xb4\x01\xb7\x42\x32\xf1\x05\xcd\x4e\x0a\x64\xf7\x7c\x83\x6d\x0b\x36\x2e\x27\xe3\xba\x67\x87\x4c\xcb\x4d\xad\x8d\x83\x64\x32\x1e\x4d\x85\x56\x0e\x9f\xdd\x94\xbe\x4b\xad\xcb\x0a\x59\xa9\x2b\xae\x4a\xa6\x4d\x39\xa3\x13\x17\x44\xb3\x0d\x3a\x9e\x73\xc7\x83\x8e\x74\xab\xed\x13\x13\x7a\x33\xab\xd7\xe5\x0c\x8d\xd1\xc6\x4e\xc9\xe1\x40\x56\xea\x9b\xb5\x74\x33\xfa\xa1\xca\x6b\x2d\x95\xf7\x4e\xf6\x9c\xe1\xca\xfa\xd8\xde\x38\x70\x54\xe8\x22\x9b\x8c\x47\xb3\x19\x3c\x12\xec\x31\x7d\xf2\xd6\x34\xec\xa3\xcf\x71\xc9\xdd\x0a\x6e\xda\x16\x66\x76\xe7\x13\xa9\x9f\x80\xa4\xcb\x77\x43\xf9\x74\x32\x4e\x23\xe8\xf7\xb8\x07\x83\x6e\x6b\x94\x05\xae\x3a\x14\xe1\x89\x8b\x75\x28\x8d\x21\xfe\x42\x2b\x85\xc2\x49\xad\x18\x7c\x74\x20\x2d\xb1\xe1\x0d\x19\xb4\xb5\x56\x56\x3e\xc9\x4a\xba\x03\xe8\xc2\xf3\x24\x78\x55\xa1\x01\xa7\x21\x97\xbc\xca\x80\xab\x1c\x2a\xee\xd0\x80\xa8\xb4\xc5\x2c\x28\x9d\x8c\x4e\xc6\xc5\x56\x09\x8a\x2a\xa1\x5d\xb8\xa6\xc4\xd9\xc2\x3b\x5f\x68\xa5\x32\xd0\x35\x29\x5a\x60\x2c\x6e\x7f\xf6\x1b\x29\x24\xf5\x13\x7b\x55\x16\xb4\x42\x93\x81\x67\x27\x85\x66\x32\x1e\xed\xb8\x01\x21\x62\x42\x0b\xad\x0a\x59\x7a\x60\xa9\xb4\x7e\x64\x50\xc0\xed\x1c\x0c\x57\x25\x1e\x5d\xd1\xa9\x11\x1a\x43\x92\x22\xf9\x53\x88\x94\x36\x64\x41\x56\xe1\x8f\x39\x28\x59\x05\x9d\x51\x40\x92\x36\xa2\x4b\xcb\xfe\x33\xbc\x4e\xd0\x98\x0c\xa6\x82\x2b\xa5\x1d\xf0\xba\xae\x0e\xd1\xf8\xd4\x9b\x6a\x27\xe3\x91\xef\x82\x91\xe8\xa5\x64\xc9\xdf\xb7\xef\x83\x4a\x19\xe4\xec\x7d\x9e\x13\xbf\xc3\x42\x1b\x4c\x7c\x48\xb1\xe2\xbf\xf2\x6a\x8b\xf6\x51\x7f\x78\x58\x2e\x3e\xc5\x32\x4e\x84\x60\x2b\xe4\x39\x1a\x9b\xa6\x59\x88\x61\xd4\x34\x37\xb0\x97\x6e\x05\x57\x0e\x29\x00\x46\xfd\x39\xea\x6d\xd7\xeb\x92\xb0\x25\xd9\x95\x43\x16\xbb\x36\xc0\xed\x3d\x92\x6a\x00\xf0\x4a\x76\x5a\x1d\x2b\x9f\xd0\xad\x74\x6e\xa3\xa6\xe7\xa2\x69\x1e\xf5\xbf\x7a\x8f\x06\xae\x64\x64\xed\x7d\x6c\x14\xe8\x3a\x86\x75\x3b\xe1\x58\x00\x9b\x3c\xbd\x7d\x74\x0e\x43\x64\xee\x71\x1f\xc0\x49\xe2\x61\x42\x46\x65\xdd\x62\xda\x34\x5d\x66\x6d\xcb\x9a\xa6\x1f\x74\xd8\x9c\x0e\x74\xe5\xab\xdd\xf7\x4a\xe8\x1c\x09\xdf\x9e\xf8\x01\x7f\x6e\xd1\xba\xa3\xd2\x1d\x9e\x55\xf2\xad\x83\x47\x2d\x5f\xc9\x1f\xb4\x87\xf9\x4a\xb2\x4e\xfe\x78\xa8\xbb\x60\x9a\xf6\xa8\x3c\x28\x19\xc6\x58\x27\x48\x8f\xa0\x25\x69\xd8\xea\xe8\x41\x95\x77\xa4\x76\x9f\xc7\xaf\xc9\xb8\x2b\x62\xbb\x13\x47\x0b\xb6\xf1\x3a\x7d\x56\x5f\x52\x4a\xf7\x4a\xb0\xf9\x8a\x8b\x5b\x00\xb8\x44\x73\xd6\x0f\x60\xd4\x66\xd4\x3f\x93\x71\x37\x16\x08\x2c\x08\xd4\x41\x80\x6f\x32\xbe\x1c\x4a\x1c\x3a\x17\xb1\xa6\xab\x8b\xc3\xf0\x82\x65\xe1\x44\xa7\xf2\x37\xdd\x44\x6e\xc5\xfd\xad\xb7\x43\xe3\x2c\x70\x6f\xd8\x5f\x88\x67\xf2\x01\x83\xd4\xd9\x4e\x03\x87\xad\x45\x73\x93\xeb\x0d\x97\xea\x0d\xd5\xe0\x84\xc1\xd2\xc8\x0d\x37\xb2\x3a\xd0\x99\x62\x5b\x81\x54\xc0\xe3\xf5\xd4\xdd\x87\x17\x53\x49\x7e\x40\x6c\x72\xb6\x08\xff\x99\xaf\xfd\x07\x1f\x8d\x54\x0e\x4d\xc1\x05\x36\x6d\x0a\x49\x6f\x35\xb8\x14\x43\xe4\xb7\xf3\xd3\x41\x96\x5c\xff\xba\x0c\xd3\x53\xb9\x78\x0b\x27\xea\x7a\x05\xf5\x82\xc3\xd0\x27\xbf\xc9\xe1\xa5\xa6\x3a\x4b\x61\x38\x10\x35\xde\x64\xf0\xd7\xec\x04\x0f\x9e\xca\x0b\x74\x7b\xad\xdf\xa3\xf0\x52\x26\xe7\x18\xec\x42\xf8\x5d\xfe\x7e\xfa\xb9\x15\x23\x3a\xc3\x9d\x17\xbc\x45\xdd\xcf\xb3\xc4\x4d\xc6\xee\x50\xe3\x60\x52\x82\x75\x66\x2b\x9c\xf7\x19\x47\x07\x7c\xfb\x6e\x9d\x91\xaa\x3c\xb5\x6c\x7f\x48\x05\x96\x08\x02\xbf\xf2\x6c\x6c\x74\x2e\x0b\x89\x36\x4c\xff\xe3\xcb\xc2\x4f\x62\xef\x72\x60\x80\xce\x26\xd7\xfd\x28\xd2\x90\x3a\x79\xf3\xd8\x2e\xdc\x73\x37\xdf\xbe\xa0\xca\x93\x35\x1e\xfc\x03\x21\xc4\x95\x0e\xcd\x35\xa7\xc4\xbd\x65\x0d\xe7\x6c\x87\x81\xae\xbb\xf9\x08\x73\x20\xa3\xb4\x77\x9a\xf1\x61\x62\xb6\xc7\x30\x2e\x8d\x5a\x1f\x52\x87\x54\x0a\xe7\xa6\x76\xbf\x68\x5f\x06\x29\xdc\xf3\xeb\x12\xd9\xe4\x70\xdd\x3d\x49\xd9\xa7\xbb\xf4\xa5\x46\xc8\x81\x66\x6c\xcd\xe5\x80\xa8\x51\xf7\xda\x59\x9f\x5e\x3b\x3e\xc2\x30\x59\x65\x01\xbb\x0c\xb4\x17\x0a\xf7\xcc\x7c\x46\xc9\x3a\x65\x49\x8c\xff\x2f\x12\xc6\x29\x1c\x6c\xcf\xe9\x59\x43\xd8\xfb\x65\x06\xeb\x0c\x76\x61\xec\xb4\xf1\x85\x13\xdf\x4c\x41\x7d\xf0\x6a\xba\xde\xe4\x30\x87\x63\x26\xff\x68\xa9\x92\xeb\x4d\x9e\x9d\xb6\x96\x74\x28\x98\x66\x8c\xa5\x69\xcf\x64\x44\x49\xb8\xe7\x23\x1d\xff\x07\x00\x00\xff\xff\x2f\xd5\x1f\xf3\xe3\x0c\x00\x00") func svcClientGrpcClientGotemplateBytes() ([]byte, error) { return bindataRead( @@ -173,12 +173,12 @@ func svcClientGrpcClientGotemplate() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "svc/client/grpc/client.gotemplate", size: 3184, mode: os.FileMode(0644), modTime: time.Unix(1464111000, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x63, 0x72, 0x1f, 0xe5, 0x3a, 0x45, 0x1, 0x91, 0xd8, 0x5b, 0xa8, 0x47, 0x45, 0x45, 0x98, 0xee, 0x0, 0xf5, 0xc1, 0x3c, 0x43, 0xf0, 0x86, 0x3c, 0xec, 0xbe, 0x2d, 0x84, 0xed, 0x1a, 0x17, 0x6c}} + info := bindataFileInfo{name: "svc/client/grpc/client.gotemplate", size: 3299, mode: os.FileMode(0644), modTime: time.Unix(1464111000, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb0, 0xe5, 0xb5, 0xba, 0x75, 0x9a, 0xbe, 0xef, 0x38, 0x68, 0xa3, 0xdd, 0x67, 0xb3, 0x47, 0x9, 0xe0, 0x86, 0x3a, 0x1, 0xe0, 0xef, 0x7e, 0xc8, 0xca, 0x3a, 0xa2, 0x55, 0x74, 0x6f, 0x9b, 0x51}} return a, nil } -var _svcClientHttpClientGotemplate = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2c\xcb\xb1\x0d\xc2\x30\x10\x05\xd0\x3e\x53\x5c\x1d\x09\xdf\x10\x34\x29\x91\xc8\x02\x56\xf8\x98\x88\xc3\x67\x9d\x3f\x95\xe5\xdd\x69\x18\xe0\x8d\xa1\xab\xdc\x01\x29\x7e\x61\x7c\x7b\xd7\x82\x5a\xfc\x7d\x52\x5f\x64\x63\xe4\xda\x9b\x07\x95\xf8\x34\xcb\x44\x2a\x2e\x4f\x0f\x39\xfc\x01\x59\x75\xce\x65\x8c\x23\x9b\x49\xda\xf6\xfd\xb6\xc1\x1a\x22\x5d\xed\x44\xe5\xfe\x27\x92\xe6\x5c\x7e\x01\x00\x00\xff\xff\x0b\x3c\x4c\x9e\x69\x00\x00\x00") +var _svcClientHttpClientGotemplate = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2c\xcb\x31\xaa\x02\x31\x10\x06\xe0\xfe\xc1\xbb\xc3\xd4\x0b\x66\x0e\x61\xb3\xa5\x60\x2e\x10\xd6\xdf\xb8\x38\x66\xc2\xe4\xb7\x0a\x7b\x77\x11\xec\xbf\x6f\x4e\x5d\xe4\x0a\x48\xf5\x13\xe3\x3d\x86\x56\xb4\xea\xcf\x9d\xfa\x20\x3b\xa3\xb4\xd1\x3d\xa8\xc4\xab\x5b\x21\x52\x75\xb9\x7b\xc8\xe6\x37\xc8\xa2\xc7\xf1\xff\x37\xe7\x56\xcc\x24\xad\x39\x5f\x56\x58\x47\xa4\xb3\xed\x68\xcc\xbf\x23\xe9\xcb\x3e\x01\x00\x00\xff\xff\xc4\x1a\x19\x91\x6b\x00\x00\x00") func svcClientHttpClientGotemplateBytes() ([]byte, error) { return bindataRead( @@ -193,12 +193,12 @@ func svcClientHttpClientGotemplate() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "svc/client/http/client.gotemplate", size: 105, mode: os.FileMode(0644), modTime: time.Unix(1464111000, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa1, 0xf0, 0x36, 0xf9, 0x16, 0xea, 0x9d, 0x4e, 0x73, 0x64, 0xc5, 0xad, 0xb3, 0x1b, 0x4, 0xe, 0xd8, 0xc8, 0x1e, 0xf7, 0x7a, 0x39, 0x40, 0x4c, 0xb2, 0x12, 0x83, 0x35, 0xca, 0x82, 0x6f, 0xd0}} + info := bindataFileInfo{name: "svc/client/http/client.gotemplate", size: 107, mode: os.FileMode(0644), modTime: time.Unix(1464111000, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6a, 0xac, 0x71, 0x30, 0xd7, 0x2a, 0x4b, 0xec, 0x4d, 0x63, 0x80, 0xb8, 0xed, 0x24, 0x66, 0x32, 0x32, 0xcc, 0x89, 0xa1, 0x8c, 0xff, 0xa0, 0xc1, 0x31, 0x0, 0xc5, 0xab, 0xf5, 0x1d, 0x4c, 0xe3}} return a, nil } -var _svcEndpointsGotemplate = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x57\x5d\x6f\xdb\x38\x16\x7d\x96\x7e\xc5\xad\x90\x45\xec\x42\x61\xde\x53\xe4\x61\xb7\xcd\xee\x06\xd8\x7e\xa0\xc9\xee\x3e\x14\x45\x41\x4b\x57\x16\x11\x8a\x64\x49\xca\x8e\x47\xd0\x7f\x1f\x5c\x52\x92\xe5\x5a\xed\x74\xe6\x71\x30\x0f\x41\x6c\x7e\x1c\x9e\x7b\xce\xbd\x97\xf4\xf5\x35\xbc\xd6\x25\xc2\x16\x15\x5a\xee\xb1\x84\xcd\x01\xbc\x6d\x9d\x63\xf0\xe6\x3d\xbc\x7b\xff\x08\x77\x6f\xee\x1f\x59\x7a\x7d\x0d\x1f\xd1\xb6\x4a\x09\xb5\x8d\x0b\x60\x2f\xa4\x04\xbd\x43\xbb\xb7\xc2\x23\xf8\x5a\x38\xa8\x84\xc4\xb0\xf8\x7f\x68\x9d\xd0\xea\x06\xba\x8e\x0d\x9f\xfb\x7e\x36\x01\x6f\xb8\xc7\xf9\x2c\x7d\xef\xfb\x34\x35\xbc\x78\xe2\x5b\x04\xb7\x2b\x52\x5a\xff\x38\xc2\x42\xa1\x95\xe7\x42\x39\x68\xd0\xd7\xba\x74\xe0\x35\x34\xfc\x09\x41\xa8\x52\xec\x44\xd9\x72\x09\xa8\x4a\xa3\x85\xf2\x0e\x2a\xab\x1b\x70\x68\x77\xa2\x40\x97\x13\x92\xc5\xaf\x2d\x3a\x0f\x5c\x95\x60\xd1\x19\xad\x1c\x82\x3f\x18\x0c\x48\xb4\x94\x82\xd0\x0e\x8f\x28\x39\x70\x07\x7b\x94\x92\xfe\xa3\x2a\x74\x89\xd6\x11\x00\xe1\x95\x38\x7c\xaf\xb4\x1d\x36\x06\xb4\x3c\x0c\x70\x12\xa7\x02\xdd\x5a\x70\xad\x31\xda\x92\xb8\xde\x72\xe5\xe8\x33\x1d\x27\xb8\x14\xbf\x70\x2f\xb4\x22\xb4\x4a\xdb\x86\x7b\xc7\xd2\x54\x34\x61\xc5\x2a\x4d\xb2\xaa\xf1\x59\x9a\x64\x14\x39\x3e\xfb\x2c\x4d\x93\x6c\x2b\x7c\xdd\x6e\x58\xa1\x9b\xeb\xad\xbe\x7a\x12\xfe\x9a\xfe\x46\xc6\xb4\xc4\x6c\x20\xeb\x3a\xf6\xe1\x1f\xf7\x01\xe8\x03\xf7\x35\x5c\xf5\x7d\x96\xae\x83\xa0\x77\x93\x44\x85\x96\x12\x0b\xef\x46\xae\xbe\x9e\x85\x0e\xbe\xe6\x1e\x0a\xdd\x18\x0a\x8c\x2b\xe0\x65\x39\xea\xc9\xe0\xde\x5f\x3a\x02\x6b\x90\x2b\x4f\xf2\x6d\x10\x5a\x87\x25\xe9\xc4\xa1\x46\x69\xd0\x82\xf3\xb6\x2d\x7c\x4e\xd3\xc3\x51\xcb\x27\x09\xe5\x35\x70\x82\x73\x42\x6d\x25\x82\xe1\x96\x37\xe8\xd1\x52\x2a\xd1\xf8\xbd\x02\x1e\x1d\xb2\x39\x08\x7f\xe9\xe8\xb0\xaa\x95\x41\xe9\xaa\x55\x05\xa9\x38\x50\x56\x48\x42\x6b\xd0\x26\x64\x34\x68\xda\x6b\xd0\x5e\x8d\x07\x12\xe0\x86\x3b\xe1\x18\xfc\x53\x5b\xc0\x67\xde\x18\x89\x39\x1c\x74\x0b\x8d\xd8\xd6\x1e\x0c\x77\xe4\xf2\x4c\x2a\x22\x38\x1d\x14\xcf\x31\x56\x97\x6d\x81\x41\x06\xae\xa0\xf6\xde\xb0\x7f\x73\x55\x4a\xe2\xb8\x17\xbe\x06\xe4\x45\x3d\x24\x2b\xac\xc6\xd3\xd7\xb0\x17\x16\x4b\x68\x4d\x04\x75\x06\x0b\x51\x89\x02\x0c\xf7\x35\x83\xd5\x7d\xe0\x27\x1c\xe1\x6f\xf8\x46\x1e\x80\x43\x23\x9c\x8f\x89\x0e\x25\x3a\xb1\x55\xb4\x55\xa8\x9d\x7e\xc2\x20\xe5\x43\xb4\x65\x2a\x8c\x40\x11\x4f\xcd\x8e\x66\x10\xc4\xa8\x24\x5b\xcf\xd5\x2d\xa4\x40\xe5\x4f\xd5\x9d\x19\x77\xac\x31\x79\xa0\x4a\x8c\x70\x58\xfe\xc8\x46\xaa\x86\xa8\x95\x20\x85\x1b\x8c\x69\x75\xe4\x2b\x94\x47\x5b\x71\x4a\xa8\x65\x27\x08\x6c\x3a\x6c\xb9\xce\x5b\x17\x3b\xd2\x50\x58\xd7\xc1\x87\x77\xb8\x7f\x3d\xc4\x53\xe8\x66\x23\x54\xd0\xa9\x19\x28\xce\x8c\xcd\x87\x6e\xe0\x5b\xab\x40\x84\x4c\x26\x82\x05\x97\x12\x6d\x4c\xe6\x81\x2c\x4b\x43\x38\x67\x82\x76\x69\xd7\x59\xae\xb6\x08\x17\x02\x6e\x6e\x81\x8d\xeb\xdf\x46\x33\xfa\x3e\x4d\xba\xee\x42\xb0\x77\xbc\xc1\xbe\x1f\xf7\x03\xc0\x14\x04\x1b\x07\xd3\xae\xbb\xa2\xd1\xbe\x4f\xfb\xd3\x5a\xfd\x89\x43\x28\x3b\x61\x35\x63\xb8\x86\xd9\xb9\xab\xc2\x3f\xc3\xd0\x47\xd8\xeb\xf8\x3f\xa7\x6c\x78\x69\x36\xac\xeb\xfe\xa5\x69\x19\x5c\x08\xf6\x31\x76\xc9\xc7\x83\xc1\x61\xeb\x1a\x56\xe7\x8b\x62\xfb\x9c\xad\xca\x01\xad\xd5\x76\x0d\x5d\x9a\x24\x63\x7b\x0d\x83\x44\x18\xd9\x82\x06\xc4\x89\x38\xac\xd3\x24\x11\x55\x58\xfa\xe2\x16\x94\x90\x01\x23\x19\x5c\x51\x42\x06\x98\x34\x49\xfa\x74\x1a\x1d\x4f\x60\x3f\xc3\x6d\x9d\x13\x4a\x9a\xf4\x69\xd7\x45\x79\x49\xdc\xb7\x54\x52\x73\x85\x43\xd1\x5e\x78\x0c\x0a\x47\xdf\xe6\xa2\x5f\x78\x5c\xd2\x3d\x0a\x4f\x60\x4b\x21\x3a\x08\xf4\xe6\x7b\xe3\x8a\x87\x50\x83\xeb\xf3\x24\x38\x09\x9e\xb0\x97\xad\x1b\x6f\xb3\xa9\x86\x3a\x32\x6a\xba\xd7\x66\xc3\xd1\x84\x99\x3b\x84\xfe\x95\x22\x1a\x30\x96\x34\x3c\x4b\x82\xb0\x6f\x37\x19\xea\xd8\x37\xc9\x15\x18\xc5\x55\x0b\x5e\x2e\xb9\x19\xfd\x9c\x66\x76\x83\x49\x71\x38\xa8\x1f\xbd\x9a\x7b\xf6\x7f\xcb\xcd\xdf\xa5\xbc\x7b\x2e\xd0\x78\xd8\x5b\x6e\x5c\x6c\xb3\x93\x7a\x95\x40\x59\xd2\x1d\x33\xd4\xe7\xb1\x60\x83\xbd\xa1\x3f\x2d\x5c\x9c\xec\xad\x28\x4b\x89\x7b\x6e\xe3\xfb\xe5\xbf\x6e\x7c\xd1\xd0\x5d\x6e\x8c\x3c\x50\x9b\xa1\xd6\xe9\x09\xbc\x99\x56\x87\xbb\x01\x77\x68\x0f\x93\x95\x54\x56\xd4\x45\xc6\xdb\x92\xf0\xde\x1b\xba\x39\xa8\x7b\xe6\xb3\xe6\x55\x70\x45\x37\x27\xdd\x37\x58\xd2\xb6\xcd\x01\x14\x79\x10\x6f\x54\x7c\x2e\x64\x5b\x62\x19\x1f\x33\x1b\x24\x0a\x14\xb3\xc1\x92\x9d\xa9\xb1\x3a\x72\xca\x21\x7b\xf0\xdc\xb7\x2e\xcb\x21\xfb\x20\xd4\x36\x5b\xa7\x63\x7b\x78\x39\xeb\x0f\xdf\xdb\x0f\x0b\xaa\xe4\x47\x36\x8c\x31\xe7\xad\x50\xdb\x90\x4e\x42\x0d\xc3\x37\xb7\xd0\x70\xf3\x29\x4e\x7d\x8e\xf2\x77\x3d\xd9\x4f\x6d\xed\xb7\xda\x57\x92\x64\xb3\x8c\xca\x6e\xa0\xeb\xf3\x61\x6b\xb4\x3f\xe9\xd3\x34\x21\x37\xbe\x10\x95\x90\xbe\x01\x72\xa2\xd5\xc5\x36\xf2\x25\x07\xfd\x44\xd3\x23\xb1\x4f\xf8\xfc\xf9\x15\xbc\xd0\x4f\x31\x15\x0d\x57\xa2\x58\x55\x8d\x67\x0f\xc6\x0a\xe5\xab\x55\x76\x37\x42\x4c\x0e\x5e\xfe\xcd\x5d\x42\xa9\xd1\x81\xd2\x1e\xf0\x59\x38\xff\x0a\x1c\xe2\xdc\xf8\x29\x77\x1c\xdb\xea\x8c\x48\xad\xd7\x43\x93\x2a\x51\xa2\xc7\xd5\xc8\x20\xcc\x1d\x03\x10\xaa\x38\xd2\x9f\xe4\xfb\x79\xa1\x44\x15\x20\x6e\x6f\xe1\x44\xb2\xa1\xd2\x16\x5b\x2d\xdc\xce\x98\xaf\x16\x97\xac\xc7\xd2\x3b\x91\x3c\x96\xdd\x7f\xf8\x06\x25\x96\xc7\x6c\x88\x8f\xff\x2d\xfa\x31\x77\xe7\x2f\xba\x98\xc2\xfb\x1a\xd5\x34\xab\x67\xe9\x3a\x80\xc5\xac\xcb\x63\x95\x0d\x85\xd0\xc6\xc5\x10\x7f\x51\xf0\xf8\xb3\x44\x14\xf4\xb0\xb1\xa2\x88\x2f\xce\x19\x87\x5a\x14\x75\xd8\xea\x50\x2d\x51\x18\x6e\xf3\x61\xf7\xf8\x96\xd1\x76\xb8\xcb\xcf\xa3\x0a\xed\x36\x26\x70\x7e\xde\x99\x17\x9a\x75\xfa\xbd\xb8\xfe\x70\x6f\x3a\x23\x95\x0f\x71\x06\xc5\x2d\x16\x28\x76\xf1\xd5\x17\x42\xfc\xe6\x31\xcd\xe0\x01\x71\x82\x99\xa1\x84\x89\xf1\x31\x3a\xd5\x3d\x11\xa5\x8c\x2c\xd1\x73\x21\xc3\xc3\x71\x2c\xa7\xf0\x9b\x64\x78\xf0\x72\x29\xfc\x81\xfd\xa8\x85\x9c\xc4\x3e\xef\x24\xbf\x5b\xd1\xbf\xfa\xcc\x9f\xa7\xcf\x9c\x6c\xcb\x97\x1f\x81\xdf\x6b\x3b\xbf\x06\x00\x00\xff\xff\x74\xb2\xce\x07\x9a\x10\x00\x00") +var _svcEndpointsGotemplate = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x59\xdf\x6f\xe3\xb8\x11\x7e\x76\x80\xfc\x0f\x73\x46\x8a\xb5\x0f\x5a\xf9\xfa\xba\x0b\x3f\xb4\xbb\xb9\xdb\x00\xdd\x1f\xb8\x6c\x7b\x0f\x41\x70\xa0\xa5\x91\x4d\x84\x22\x75\x24\x65\xc7\x15\xfc\xbf\x17\xc3\x1f\xb2\x64\xcb\x76\xb6\x87\x02\xc5\xe1\x1e\x16\x49\x44\x72\x38\xf3\xcd\x37\x1f\x87\xdc\xd9\x0c\xde\xa9\x1c\x61\x89\x12\x35\xb3\x98\xc3\x62\x0b\x56\xd7\xc6\xa4\xf0\xfe\x33\x7c\xfa\xfc\x15\x6e\xdf\xdf\x7d\x4d\xaf\xaf\x66\x33\xf8\x19\x75\x2d\x25\x97\x4b\x3f\x03\x36\x5c\x08\x50\x6b\xd4\x1b\xcd\x2d\x82\x5d\x71\x03\x05\x17\xe8\x67\xff\x0b\xb5\xe1\x4a\xbe\x81\xa6\x49\xc3\xef\xbb\x5d\x77\x04\xde\x33\x8b\xdd\x61\xfa\x9b\xa6\x5c\x5f\x55\x2c\x7b\x62\x4b\x04\xb3\xce\xe8\xcf\xd9\x0c\xbe\x46\xe3\x90\x29\x69\x19\x97\x06\x4a\xb4\x2b\x95\x1b\xb0\x0a\x4a\xf6\x84\xc0\x65\xce\xd7\x3c\xaf\x99\x00\x94\x79\xa5\xb8\xb4\x06\x0a\xad\x4a\x30\xa8\xd7\x3c\x43\x93\x38\x53\x1a\x7f\xab\xd1\x58\x60\x32\x07\x8d\xa6\x52\xd2\x20\xd8\x6d\x85\xce\x14\xcd\xa5\x58\x94\xc1\xbd\x99\x04\x98\x81\x0d\x0a\x41\x3f\x51\x66\x2a\x47\x6d\xc8\x80\x33\x98\x63\xf8\x50\x28\x1d\x56\x3a\x73\x89\xfb\xc0\x08\xa4\x02\x54\xad\xc1\xd4\x55\xa5\x34\xa1\x6c\x35\x93\x86\x7e\xa7\xfd\x38\x13\xfc\xdf\xcc\x72\x25\x9d\xb9\x42\xe9\x92\x59\x93\x52\xe4\xbc\x74\x93\x26\xd7\x57\xa3\x71\x51\xda\x31\xfd\x24\x00\xf0\x99\x7e\xa7\xbf\x96\xdc\xae\xea\x45\x9a\xa9\x72\xb6\x54\xaf\x9f\xb8\x9d\xd1\xbf\xe8\xb9\x9f\x54\x2d\x60\xdc\x34\xe9\x97\xbf\xdf\x39\x73\x5f\x98\x5d\xc1\xeb\xdd\x6e\x7c\x7d\x35\x0d\xf0\xde\xb6\x80\x65\x4a\x08\xcc\xac\x89\x7e\xdb\x55\x07\x07\xb0\x2b\x66\x21\x53\x65\x45\x41\x32\x09\x2c\xcf\x23\xba\x29\xdc\xd9\x57\xc6\x59\x2b\x91\x49\x4b\x60\x2e\x10\x6a\x83\x39\xa1\xc6\x60\x85\xa2\x42\x0d\xc6\xea\x3a\xb3\x09\x0d\x87\xbd\x86\xb7\xe2\xd2\x2a\x60\xce\x9e\xe1\x72\x29\x10\x2a\xa6\x59\x89\x16\xb5\x23\x98\x1b\xb9\x93\xc0\x7c\xca\x74\x02\xdc\xbe\x32\xb4\x5f\x51\x0b\x87\x7c\x51\xcb\x8c\x50\x0d\x6e\x4b\x24\xe0\x15\xa8\xca\x51\x1d\x14\xad\xad\x50\xbf\x8e\x7b\x3a\x8b\x0b\x66\xb8\x49\xe1\x47\xa5\x01\x9f\x59\x59\x09\x4c\x60\xab\x6a\x28\xf9\x72\x65\xa1\x62\x86\xf2\xde\xc1\x8b\x9c\x6c\x77\xf2\x1b\x55\x5a\xe5\x75\x86\x1e\x0b\x26\x61\x65\x6d\x95\x7e\x60\x32\x17\xe4\xe5\x86\xdb\x15\x20\xcb\x56\x81\xc0\x30\x89\xfb\x4f\x61\xc3\x35\xe6\x50\x57\xde\xaa\xa9\x30\xe3\x05\xcf\xa0\x62\x76\x95\xc2\xe4\xce\x7b\xc8\x0d\xed\xb0\x60\x0b\xb1\x05\x06\x25\x37\xd6\xb3\x1f\x72\x34\x7c\x29\x69\x2d\x97\x6b\xf5\x84\x0e\xd0\x7b\x9f\x9d\xb6\x5a\x9c\x93\x78\x90\x74\x9f\x13\xb2\x11\xd1\x4c\xa7\x7d\x8c\x33\xc1\x51\xda\x3e\xc6\x9d\x0c\xee\x6b\x4f\x6c\xa9\x42\xbd\x41\xcc\xcf\xe6\x93\x8a\xc4\x23\xc6\x09\xe7\x12\x3d\xc3\xf6\x3e\x73\x69\x51\x17\x8c\xb8\x35\x9c\x0f\x67\xad\xdd\x6e\x58\x01\x6a\xe3\x15\x2b\x14\xdc\xcc\x65\xe3\x13\x6e\xde\x85\x88\x32\x55\x2e\xb8\x74\x60\x95\xc1\xc9\x4e\x7e\x93\x20\x13\xb6\xd6\x12\xb8\x23\x35\x79\x98\x31\x21\x50\x7b\x5e\x07\x6f\xd3\xeb\x2b\x17\xd0\x11\xaa\xcd\xf5\xd5\x88\x36\xbd\x77\xc0\x7e\xae\x3c\x25\x01\xa0\x64\xd5\x83\xb1\x9a\xcb\xe5\xe3\xc3\x23\xcd\x68\x9d\x4c\xbb\x73\xc3\xf2\x9f\xbd\x6c\xbd\x8f\x62\xd3\x5d\xde\x5f\xec\xa7\x84\xf9\x3f\xd6\x32\x6b\x2d\x78\xb1\xbb\x8d\x02\x76\xd2\x82\x9f\x11\xe7\x7b\x13\x4d\xa3\x99\x5c\x22\xdc\x70\x78\x33\x87\x34\x46\xfd\xd1\xf3\x8a\x74\x7b\xd4\x34\x37\x3c\xfd\xc4\x4a\xdc\xed\x22\x0a\x14\x67\xcc\x45\x7a\xdb\x16\x5a\xd3\xbc\xa6\xcf\xb4\x6a\x77\x28\x41\x2f\xda\x8a\x2a\x0e\x26\x1d\xb4\xa7\xd0\xd9\x7d\x92\xd9\x67\x08\x3a\x99\xbe\xf3\x3f\x13\xa2\xf7\xf7\xd5\x22\x6d\x9a\x9f\x14\x4d\x83\x1b\x9e\x06\x90\xbe\x6e\x2b\x0c\x4b\xa7\x30\x39\x9e\xe4\x71\xe8\xcc\x4a\x00\xb5\x56\x7a\xea\x92\x3b\x8a\xa7\x88\xfb\x4a\x2e\x63\x3a\x00\x05\x39\x45\x4e\x4c\x69\x09\x2f\xdc\xdc\xef\xe6\x20\xb9\xf0\x56\x46\x81\x65\x92\x0b\x67\x88\xbe\xed\xbc\x79\xf7\x3d\xee\x92\xbe\xc4\xc1\x69\x42\x76\xae\xaf\xc8\x42\xd3\x04\xa8\x1d\xce\x1f\x49\x2d\x7a\x60\x3b\x45\xba\xb1\xe8\xc0\x0e\x89\xec\x26\xe0\xc6\xe2\x60\x0e\x7c\x12\xc8\xde\x50\xb4\x06\x9c\x97\xdd\xc5\x7e\x86\xe7\xf6\xf4\x98\x16\x7d\x18\xc8\xf8\x70\x1e\xe3\x01\xde\xca\x43\x43\x59\x6b\x8f\xf2\xce\x67\x9f\x90\x6e\xaa\xc8\xfc\x6f\x14\x54\x30\x32\x04\xe6\x11\x25\xfc\xc2\x75\x9b\x5e\x93\x1e\x70\xcd\xf9\x14\xa6\x0d\x65\x76\x30\xb7\x21\xbb\xed\xd8\x3a\xa6\x2c\x0c\xf8\x44\x84\xd4\xf5\x73\xf8\x8b\x66\xd5\xdf\x84\xb8\x7d\xce\xb0\xb2\xb0\xd1\xac\x32\xfe\x48\x69\xa1\x2c\x38\x8a\x9c\x0e\xd5\x20\x42\x7b\x55\x72\xd9\xf6\x3a\x3c\xd0\x30\xa4\x1f\x79\x9e\x0b\xdc\x30\x1d\xda\xb8\x7f\x9a\xd8\xd9\x51\x2f\x53\x55\x62\x4b\x72\x4a\xc7\x84\x25\xf3\x65\x3b\xdd\x1d\x85\xb8\x46\xbd\x6d\x33\x4b\x15\x47\x6a\x69\x5a\x85\x9c\xcd\xc0\x8b\x1a\x1d\x14\x49\x47\xa5\x33\x26\xa9\x5b\xa0\xf3\x15\x73\x5a\xb7\xd8\x82\xa4\x8c\xf8\x2e\x02\x9f\x33\x51\xe7\x98\xfb\x7e\x6e\x81\xe4\x03\x85\x5d\x61\x9e\x1e\x23\x32\xd9\x7b\x95\xc0\xf8\xde\x32\x5b\x9b\x71\x02\xe3\x2f\x5c\x2e\xc7\xd3\xeb\xab\x28\x1e\xdf\x77\xd4\xe3\x94\x01\x18\x40\x26\xd9\xfb\x93\xa6\xa9\x57\x50\xcf\x2f\x2e\xc3\xf7\x37\xf3\xae\xba\xfa\x24\x34\x3b\xc7\x06\xd2\xbe\x8b\xfa\x36\x1a\x8d\x3b\x1c\x1b\xbf\x81\x66\x97\xc4\xc5\x81\x09\x23\xc7\x86\x11\xe5\xe5\x57\xf2\xc8\xb1\xda\xd9\x6d\xbd\x6b\x82\xd4\xfc\x9a\x80\x7a\xa2\xf1\xe8\xdf\x03\x3e\x3f\xbe\x85\xef\xd4\x53\x20\x68\xc5\x24\xcf\x26\x45\x69\xd3\xfb\x4a\x73\x69\x8b\xc9\xf8\x36\x1a\x69\xb3\xf9\xea\x2f\xe6\x15\xe4\x0a\x0d\x48\x65\x01\x9f\xb9\xb1\x6f\xc1\x20\x76\x49\xd0\x12\xc9\xa4\x4b\x35\x26\xb7\xa6\xd3\x56\xc8\x72\x14\x68\x71\x12\x9d\x70\xa3\xbd\x38\xb8\xcc\xf6\x51\xb4\x58\x7e\x0b\x6a\xbc\x70\x46\xe6\x73\xe8\xe1\x17\xeb\x70\x50\x98\x61\xde\x89\x60\x32\x38\x65\xba\x2f\xcb\x83\x0c\xc4\x92\xfc\x07\x5b\xa0\xc0\x7c\x4f\x12\x7f\x3d\x5a\xa2\x8d\xa4\xee\xb6\xb7\x9e\xdb\x9b\x15\xca\x76\x54\x75\x79\x1c\xac\x79\x36\x26\xbe\x00\x43\x89\xd4\x7e\x36\xf8\x4b\x17\xf3\x57\x37\x9e\x51\x83\xa7\x79\x16\x1a\xf0\x8e\x17\x2b\x9e\xad\xdc\x5a\x83\x72\xc8\x89\xd0\xd1\x84\xe5\xb1\xa3\x53\x3a\xf6\x33\xc7\x81\x39\x65\xf6\xcc\x4e\x8e\x55\x7c\x40\xd8\xfb\xaa\xd5\x8b\xed\xbf\x17\xaf\x23\xbf\x92\x10\xab\xc3\x5d\x63\x86\x7c\xed\x5b\x60\x17\xe6\xc1\xfd\x22\x85\x7b\xc4\xbd\x9d\x8e\x19\x37\x12\x7b\xf3\x56\x15\xc8\x55\x62\x68\x8e\x96\x71\xe1\xda\xe8\x58\x65\xfe\xd2\x16\x6e\x00\x4c\x70\xbb\x4d\xcf\x4a\x4c\x2f\xfe\xae\xd2\x7c\x33\xae\x7f\xea\xd0\x1f\x58\x87\x7a\xeb\x92\xe1\x96\xf2\xb2\x2c\x05\xce\xfd\xc2\xed\xea\x83\xb5\x95\x3f\x7c\xcf\x94\x1e\x4a\xab\xb7\x54\x2c\x05\x17\x98\xc3\x87\xa3\x7b\xcb\x85\xaa\x3c\x7d\x8d\x79\x51\x3b\xe1\x2f\x9f\xa0\xc2\x66\xff\x07\x1d\xc5\x10\x72\x13\xd3\x89\xeb\x5b\x3b\x8c\x8b\x06\xcf\x60\xf8\x67\xc1\xff\x0f\x0a\x9e\x1a\xf6\xf4\xf8\x82\x3e\xef\x34\xf0\x83\xe3\xee\xd5\x71\xf2\xc2\x4b\x7c\xd8\xee\x92\xba\xac\xd9\x9e\xfc\x17\xde\x04\xc8\x6f\x15\xe1\x1d\x70\xf0\x81\xcb\xec\xf1\x2d\xb4\x48\xab\xd6\x6f\x22\xb9\xcc\x27\x2a\x01\x73\xe0\xe1\x68\x07\x28\x0c\x1e\xad\x70\x91\x9e\xf3\x27\x81\xbf\x4e\xbb\x6b\x1e\x7e\x78\x84\x79\xcf\x7c\x9b\x8b\x53\xae\xc2\x3c\x46\xde\x57\xb0\x9f\xd0\x1e\xab\x90\xbf\x32\xf9\x47\xca\xd3\x5e\x01\x33\x46\x65\xdc\xbd\x6b\x3b\x8d\x22\xe9\x58\xf2\x35\xca\xfd\x59\xba\xaf\xd5\x4e\xa9\x0e\xed\xd9\x3e\xd3\x41\xac\xbb\x73\x80\xf8\xa2\x2c\x62\x48\xe7\xf2\x14\xed\x76\x92\x15\x6e\x84\x3d\x3c\xe2\xc7\x17\xe4\xe2\x87\xe9\x1e\xbe\x7b\x1f\x4a\xff\xf5\x88\x80\xe1\x4b\xe9\x5e\x65\xcf\x3f\x1d\x81\x7f\x0f\x3b\x0f\xd7\xe0\x1e\x87\x78\x25\xf1\x9d\xfc\xd2\x96\x5e\xd0\x3c\x52\x07\x8f\x5e\x7b\xac\x60\x1e\xcd\x1d\x31\xe5\x20\xd4\x48\x15\xca\xfd\xa5\x60\x7f\x27\x5f\x2e\x01\x50\x30\x21\x16\x2c\x7b\xba\x8c\xc0\x25\x47\x03\xbb\x02\x04\x7d\x76\x9d\xc4\xec\x88\x5f\x2d\x82\x5d\x7e\x45\x27\x07\x28\xd4\x7b\x3e\x3c\xc9\xa1\xe3\xc7\xc3\x6f\x23\x51\x6f\x97\x63\x10\xc3\x7f\xbf\x5c\xdc\xb4\x4f\xa3\xfe\xcb\x67\x8f\x47\xc1\xe0\x00\x8f\xfa\xf1\x9e\x26\xd2\x40\xc4\xbf\x9b\x49\x17\x50\x38\x41\xa5\x21\x18\x2e\xfa\x1a\xc8\x14\x70\x38\x24\xd3\x29\xe4\x8e\xd8\xd4\xe2\x78\x92\x4d\xff\x09\x00\x00\xff\xff\x2a\x89\x56\xf9\x6e\x1c\x00\x00") func svcEndpointsGotemplateBytes() ([]byte, error) { return bindataRead( @@ -213,12 +213,12 @@ func svcEndpointsGotemplate() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "svc/endpoints.gotemplate", size: 4250, mode: os.FileMode(0644), modTime: time.Unix(1464111000, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x41, 0x2d, 0x18, 0xaf, 0x17, 0xfe, 0xa0, 0x91, 0xab, 0x63, 0xd2, 0xa4, 0xc4, 0xff, 0xae, 0x35, 0x3b, 0xa8, 0x91, 0xeb, 0x2a, 0xb, 0x54, 0xee, 0x1e, 0xd0, 0x4c, 0x36, 0xb6, 0xce, 0x17, 0x1}} + info := bindataFileInfo{name: "svc/endpoints.gotemplate", size: 7278, mode: os.FileMode(0644), modTime: time.Unix(1464111000, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd2, 0xf2, 0x38, 0x92, 0x88, 0xc, 0x13, 0x3, 0xd4, 0x18, 0x3c, 0x12, 0x56, 0x41, 0xb3, 0xf9, 0xef, 0xc0, 0x12, 0x7e, 0x19, 0x69, 0x9b, 0x14, 0xfa, 0x63, 0x30, 0x40, 0xe0, 0xf1, 0x4a, 0xda}} return a, nil } -var _svcServerRunGotemplate = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\xdd\x6e\xdb\x3a\x12\xbe\x16\x9f\x62\x2a\x74\x17\x32\xe0\x52\x05\x76\xbb\x17\xde\xfa\xa2\x8d\xd3\x36\x40\x93\x1a\x8e\xdb\x73\x79\x40\x4b\x23\x99\xa8\x44\xea\x90\x94\xdd\x40\xd0\xbb\x1f\x0c\xf5\x63\xb9\x4d\xdc\xf6\xe4\x22\x96\x38\x33\xdf\x7c\x9c\x5f\xc5\x31\x5c\xe9\x14\x21\x47\x85\x46\x38\x4c\x61\xf7\x00\xce\xd4\xd6\x72\x58\x7d\x82\xbb\x4f\x5b\xb8\x5e\xdd\x6c\x39\x8b\x63\xd8\xa0\xa9\x95\x92\x2a\xef\x14\xe0\x28\x8b\x02\xf4\x01\xcd\xd1\x48\x87\xe0\xf6\xd2\x42\x26\x0b\xf4\xca\x5f\xd0\x58\xa9\xd5\x02\x9a\x86\xf7\xcf\x6d\x3b\x11\xc0\x4a\x38\x9c\x4a\xe9\xbd\x6d\x19\xab\x44\xf2\x55\xe4\x08\x16\xcd\x01\x0d\x63\xb2\xac\xb4\x71\x10\x31\xe8\xff\xc2\xac\x10\x79\x78\x7a\xd5\x76\xf2\x92\x95\x2e\x64\x41\x58\xe8\x9c\x7e\x14\xba\xfe\x27\xde\x3b\x57\x4d\x9f\xe3\xaa\x32\x3a\x0b\x19\x0b\xe2\x18\xfe\x93\xc2\x5a\x18\xf7\xc0\x82\x30\xd7\x3a\x2f\x90\xe7\xba\x10\x2a\xe7\xda\xe4\x71\x6e\xaa\xa4\xd7\xdb\xd2\x15\xef\xd1\x1c\x64\x82\x2c\xa8\x76\x10\x36\x0d\x5f\xbf\xbd\xf1\x14\xd7\xc2\xed\xe1\x45\xdb\x92\x97\xa6\xe1\xe7\x87\x10\xdb\x43\xf2\x84\x64\x2f\x54\x5a\xa0\xb1\x21\x9b\x31\x76\x10\x06\x56\x98\x89\xba\x70\x57\x5a\x65\x32\x87\xee\x87\xb1\xac\x56\x09\x48\x25\x5d\x34\x83\x86\x05\x14\x05\x7e\xef\x8c\x54\xf9\x17\x61\xa2\x7f\x9f\x19\xf1\x15\xee\xea\xfc\x4d\x9a\x9a\x39\x84\x29\x3d\x73\x91\xa6\x26\x9c\x43\xb8\x78\xf5\xf2\x7f\x2f\xe9\xc1\xab\x80\x50\x29\x94\xe8\x8c\x4c\x2c\x14\xd2\x3a\x54\x40\x9a\x68\x6d\x38\xfb\x99\x93\x0f\xdb\xed\xba\xf7\x41\x21\x9d\xba\x78\xe5\x5d\x90\xc2\x6f\xa3\xbe\xdf\xac\xaf\x7a\x54\x0a\xfd\x14\xf5\xbf\x1e\x35\xdf\xac\xaf\x20\x22\xec\xd9\x8f\xe0\x3e\x4f\x9f\x2d\x02\xaa\x83\x34\x5a\x95\xa8\x1c\x1c\x84\x91\x62\x57\xa0\x9d\x83\xcc\xc0\xa2\xe3\xf0\xae\x10\xb9\x85\xbd\x38\x20\x54\x46\x6a\x23\xdd\x83\xaf\x65\xb8\x56\x07\xd2\xb7\x9c\x05\x32\xf3\xc0\xb0\x58\x82\xb6\xfc\x3d\x3a\x54\x87\x28\x5c\x5d\xbf\xfd\xfc\xfe\xcf\x37\xab\xd5\x26\x9c\xfd\xbf\x53\x78\xb6\x84\x30\xa4\xa4\x04\x4f\x64\x01\x96\x5e\x91\x05\xad\x47\xf5\x15\x7d\x8e\xba\xfe\xb4\xd9\x12\x9e\x17\x3d\x85\x37\x04\x1c\x96\x90\x95\x8e\xdf\x57\x46\x2a\x97\x45\xe1\xe2\x5f\x36\x9c\x7b\xd3\xd9\xe0\xe2\x11\xe2\x64\xfd\x6b\xbc\x27\x7e\xa6\xb4\x1f\xc1\xa4\x64\xfd\x1a\xe6\x90\xd6\x09\x66\xcb\x98\x9f\x3f\xbe\xcc\x13\xad\x9c\x90\xca\x82\xdb\x23\x18\xfc\xab\x96\x06\x53\xc8\x24\x16\xa9\x85\x4c\x1b\x18\x86\x8f\x18\x46\x83\x7b\xa8\x70\xb0\xb6\xce\xd4\x89\x23\xb7\x23\x77\xeb\x0b\x8c\x05\xa7\x24\x0c\x27\x23\x95\xfe\xa0\xed\x9b\xeb\x0e\x8f\xd7\x2a\xad\xb4\x54\xce\x46\xb6\x6b\x73\xa8\x76\xbc\x69\x78\xdf\xf4\xfc\x4e\x94\xd8\xb6\xf7\x9e\xc0\x0c\xec\x21\xe1\xa3\x05\x39\x8f\x63\x78\x5b\x5b\xa9\xd0\x5a\x48\x75\x29\xa4\xe2\x5d\x45\xfe\x61\x44\x35\x4c\x0e\x38\x4a\xb7\x87\x52\xa6\x69\x81\x47\x61\xd0\x72\xb8\x47\x84\x61\x0c\xc4\x53\x49\xae\x59\x30\x30\x59\x8e\x2a\x9c\xe0\x7a\xb4\x81\x68\x5f\xfa\x03\x9d\xd1\x7d\x40\x13\x25\x62\x41\xd3\x18\xa1\x72\x84\xe7\x92\x52\x38\x5e\xe8\x16\xdd\x5e\xa7\x96\x26\x11\x0b\x82\xa6\xd9\xea\x8f\xfa\x88\x06\x9e\xcb\xfe\xae\x23\xe0\xd2\x5f\xf7\x56\x7c\xc5\xa6\xf9\x41\x7a\x62\x11\x34\x0d\xaa\x94\xd0\x88\x11\x8e\xd1\x59\x2c\xcf\xc3\xd5\xfc\x32\xa5\x1f\x9c\x2d\x68\xd4\x5f\xa0\x3a\x9f\x90\x68\x27\xf1\xb7\x58\x60\x42\x3b\xee\x94\xb3\xdf\x4c\xc5\xe9\x3a\xdf\x25\xe3\x54\x37\xa3\x0a\x5d\xdf\xa0\xab\x8d\x82\xf1\xac\x2f\xf9\x4d\xad\xc0\x3a\x61\x9c\x05\x01\x0a\x8f\x40\xe3\xb3\x2f\xeb\x39\xf8\xf9\x36\xbc\xd0\x7c\x16\xe0\x47\x78\x7f\xd6\x71\x76\x7b\x24\xa4\x4a\x58\x8b\x29\x35\x0f\x75\x01\x29\x17\x3a\xcf\xd1\x74\x05\xbd\xa9\x55\x94\x64\xc3\x0a\xf1\x6b\x63\x28\xa6\xc5\xe4\x02\x77\x78\x1c\x8a\x69\xf6\x5d\xca\x1e\x6b\x89\xbe\xd2\x6e\x31\xd9\x0b\x25\x13\x51\x9c\x6a\x0d\x8d\x49\xc8\xac\x14\x5f\x31\x22\x31\xa0\x31\xda\xf4\x16\x37\xca\xa1\x31\x75\xe5\x06\xd7\x9c\x05\xb9\x3e\xf1\x18\xe5\x1f\xba\x93\x88\xe0\x7a\xdb\x6e\x5b\x75\xe3\x7e\x30\xa4\x3b\x76\xcb\x30\x28\x74\xce\xd7\x34\x0d\x0b\x15\x85\xce\x08\x65\x69\x1a\x86\xc3\xf6\xa3\x87\x7e\x8f\x24\xd9\x64\x2e\x13\x78\x50\xfa\x60\xd0\x02\xeb\x03\x81\xb7\xf5\x37\x8a\x44\x50\xf2\x8e\x49\x14\xc6\x1e\xa6\xfb\x68\x88\xc3\x79\xa7\xde\xd3\x7c\x47\x34\xbc\x84\xdf\xa8\x14\xbf\xcd\x2e\x98\x26\x65\x5a\x48\x85\x4f\x23\x5c\x75\x0a\x97\x30\xe8\x9f\x2c\x2e\x60\xac\x3b\x85\x4b\x18\xf6\xa1\xdc\xe9\xe2\x69\x88\x7b\x2f\xbf\x84\xe0\x8c\x48\x2e\x70\xd8\x92\x78\xe6\xe3\xeb\x8b\xe2\xf5\x8b\x4e\xf3\xa3\xcf\xe0\x1b\x95\xfa\x40\x47\x67\xd9\x98\x43\x49\xfb\x2b\xea\x53\xee\xbf\x1e\xc6\x5c\xfe\x46\xca\xc9\xf0\xbb\x8c\x0f\x5b\x81\x2e\xb4\x1f\x66\x11\xcd\x32\x12\x8c\xe5\x76\x6a\xdd\x9f\xb3\x3e\x7d\xfc\xec\xa7\xa4\x7d\xf3\xfe\x13\xd2\x64\x18\xce\xa7\x9c\x87\x35\x45\x6c\x0a\x35\xa7\x56\x22\xe6\x0a\x5d\xcf\x27\x0a\x5d\x52\x3d\xa2\x2c\x33\xaf\xfb\x6c\x09\x4a\x16\xde\xed\x78\x1b\x34\x86\x5e\xbb\xb9\xc4\x02\x3f\x1e\x03\x6b\x0e\xd3\x90\x10\x54\xb7\xe1\xce\x23\xe2\x07\x82\xff\x24\x1b\xfa\xc4\xf8\x2e\xa9\x76\x7c\x83\x39\x31\x32\x4f\x6c\xca\xc8\xce\xc1\x9a\xc3\x59\x35\x58\xde\xc5\xb2\x50\xd3\xf0\x6d\x6a\xf5\x8c\x9d\x47\x09\xbf\x49\x0a\xd0\xeb\x17\xdd\x34\x68\x19\xfb\x3b\x00\x00\xff\xff\xab\x77\xc1\x32\xb5\x0c\x00\x00") +var _svcServerRunGotemplate = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\x4f\x6f\xdb\x3a\x12\x3f\xcb\x80\xbf\xc3\x54\xe8\x2e\x64\xc0\xa5\x0a\xec\x76\x0f\xde\xfa\xd0\xc6\x69\x1b\xa0\x49\x0d\xc7\xed\x3b\x3e\xd0\xd2\x48\x26\x2a\x91\x7a\x24\x65\x37\x10\xfc\xdd\x1f\x86\x94\x64\xd9\x4d\xdc\xe6\xe5\x10\x4b\xe4\xcc\x6f\x7e\xf3\x5f\x71\x0c\x57\x2a\x45\xc8\x51\xa2\xe6\x16\x53\xd8\x3c\x80\xd5\xb5\x31\x0c\x16\x5f\xe0\xee\xcb\x1a\xae\x17\x37\x6b\x36\x1e\xc5\x31\xac\x50\xd7\x52\x0a\x99\x7b\x09\xd8\x8b\xa2\x00\xb5\x43\xbd\xd7\xc2\x22\xd8\xad\x30\x90\x89\x02\xbd\xf4\x37\xd4\x46\x28\x39\x83\xa6\x61\xed\xf3\xe1\x30\xbc\x81\x05\xb7\x38\xbc\xa6\x77\x12\x19\x8f\x2a\x9e\x7c\xe7\x39\x82\x41\xbd\x43\x4d\x27\xa2\xac\x94\xb6\x10\x8d\x47\xd0\xfe\x85\x59\xc1\xf3\x70\xf0\xae\xcc\xf0\x2d\x2b\x6d\x38\x1e\x05\x61\xa1\x72\xf7\x2b\xd1\x76\xbf\xf1\xd6\xda\xea\xe4\x25\xae\x2a\xad\xb2\x90\x0c\x05\x71\x0c\xff\x49\x61\xc9\xb5\x7d\x20\x91\x5c\xa9\xbc\x40\x96\xab\x82\xcb\x9c\x29\x9d\xc7\xb9\xae\x92\x5e\x74\x4d\x4e\xdf\xa3\xde\x89\x04\xc7\xa3\xa0\xda\x40\xd8\x34\x6c\xf9\xfe\xc6\xf1\x5d\x72\xbb\x85\x57\x87\x83\x33\xd6\x34\xec\xf4\x14\x62\xb3\x4b\x9e\xba\xda\x72\x99\x16\xa8\xc9\xa7\x09\x19\xdb\x71\x0d\x0b\xcc\x78\x5d\xd8\x2b\x25\x33\x91\x83\xff\xa1\xbb\xac\x96\x09\x08\x29\x6c\x34\x81\x66\x3c\x0a\x28\x32\xec\xde\x6a\x21\xf3\x6f\x5c\x47\xff\x3e\xd1\x63\x0b\xdc\xd4\xf9\xbb\x34\xd5\x53\x08\x53\x7a\x66\x3c\x4d\x75\x38\x85\x70\xf6\xe6\xf5\xff\x5e\xd3\x83\x13\x01\x2e\x53\x28\xd1\x6a\x91\x18\x28\x84\xb1\x28\x81\x24\xd1\x98\x70\xf2\x4b\x2b\x9f\xd6\xeb\x65\x6b\x84\x22\x3c\xb4\xf1\xc6\xd9\x20\x81\xe7\xc3\x7e\x5c\x2d\xaf\x5a\x58\xca\xc3\x10\xf6\xbf\x0e\x36\x5f\x2d\xaf\x20\x22\xf0\xc9\x23\xe8\x3e\x69\x5f\x0d\x02\xca\x9d\xd0\x4a\x96\x28\x2d\xec\xb8\x16\x7c\x53\xa0\x99\x82\xc8\xc0\xa0\x65\xf0\xa1\xe0\xb9\x81\x2d\xdf\x21\x54\x5a\x28\x2d\xec\x83\x2b\x75\xb8\x96\x3b\x92\x37\x6c\x3c\x0a\x44\xe6\xb0\x61\x36\x07\x65\xd8\x47\xb4\x28\x77\x51\xb8\xb8\x7e\xff\xf5\xe3\x9f\xef\x16\x8b\x55\x38\xf9\xbf\x17\x78\x31\x87\x30\x74\xa9\x09\x9e\xc8\x05\xcc\x9d\xe4\x78\x14\x1c\x3c\xb0\x2b\xf7\x53\xe0\xe5\x97\xd5\x9a\x20\xdd\xd5\x93\x90\x5d\xe0\x61\x0e\x59\x69\xd9\x7d\xa5\x85\xb4\x59\x14\xce\xfe\x65\xc2\xa9\xd3\x9d\x1c\xad\x3c\x42\x9f\xf4\x7f\x93\xfd\xc0\xd4\x29\xf9\x47\x60\x29\x71\xbf\x09\xdb\xe5\xf8\x04\xd6\xcd\x05\x37\xae\x5c\xf1\x27\x4a\x5a\x2e\xa4\x01\xbb\x45\xd0\xf8\x57\x2d\x34\xa6\x90\x09\x2c\x52\x03\x99\xd2\xd0\x8d\x2a\xde\x0f\x11\xfb\x50\x61\xa7\x6e\xac\xae\x13\xeb\x8c\xf7\x4e\x18\x57\x73\xe3\x51\x70\x4c\x4a\x7f\xd4\x53\xea\x4e\x0e\x7d\xdf\xdd\xe1\xfe\x5a\xa6\x95\x12\xd2\x9a\xc8\xf8\x49\x00\xd5\x86\x35\x0d\x6b\xe7\x02\xbb\xe3\x25\x1e\x0e\xf7\x8e\xc7\x04\xcc\x2e\x61\xbd\x86\xa3\x10\xc7\xf0\xbe\x36\x42\xa2\x31\x90\xaa\x92\x0b\xc9\xba\x52\xfd\x43\xf3\xaa\x9b\x2f\xb0\x17\x76\x0b\xa5\x48\xd3\x02\xf7\x5c\xa3\x61\x70\x8f\x08\xdd\xa4\x88\x87\x37\xb9\x1a\x8f\x82\x8e\xcd\xbc\x97\x61\x84\xd7\xc2\x75\x64\xfb\xb6\xe8\x48\x1d\x39\x04\x34\x75\xa2\xf1\x28\x68\x1a\xcd\x65\x8e\xf0\x52\x50\x5a\x7b\xc7\x6e\xd1\x6e\x55\x6a\x68\x62\x51\x1a\x9b\x66\xad\x3e\xab\x3d\x6a\x78\x29\x5a\xa7\x7b\xcc\xb9\xf3\xfb\x96\x7f\xc7\xa6\xf9\xe9\x76\x40\x25\x68\x1a\x94\xa9\xc3\xf3\xc4\xb0\x0f\xd5\x6c\x7e\x1a\xbb\xe6\x19\xc4\x7e\x32\x39\xa3\x2d\x71\x81\xf0\xf4\x84\xca\xe1\x24\x1f\x06\x0b\x4c\x68\x59\x1e\xd3\xf8\xdc\xd4\x1c\xbd\x3a\x4b\xce\xb1\x96\x7a\x11\x1f\x07\x8d\xb6\xd6\x12\xfa\xd3\x63\x4b\xac\x6a\x09\xc6\x72\x6d\x0d\x70\x90\xb8\x07\x1a\xb8\x6d\xd9\x4f\xc1\x0d\xc4\xee\x85\x46\x3a\x07\x37\xf5\xdb\x33\xcf\xdc\x6e\xd1\x41\x55\xdc\x18\x4c\xa9\xbb\xa8\x4b\x48\xba\x50\x79\x4e\xdd\xe3\x6a\x7d\x55\xcb\x28\xc9\xba\xd5\xe3\x97\x4d\x57\x64\xb3\x81\x23\x77\xb8\xef\x8a\x6c\x72\x9e\xc2\xc7\xfa\xa5\x2f\xc1\x5b\x4c\xb6\x5c\x8a\x84\x17\x83\x22\x44\xad\x13\xd2\x2c\xf9\x77\x8c\xe8\x1e\x50\x6b\xa5\x7b\xa5\x1b\x69\x51\xeb\xba\xb2\x1d\x01\x52\xca\xd5\x91\x4e\x2f\xf0\xc9\x9f\x44\x84\xd8\xab\xfb\x65\xe7\x77\x45\xaf\x4b\xee\xb6\xdb\x34\x28\x54\xce\x96\x34\x45\x0b\x19\x85\x56\x73\x69\x68\x8a\x86\xdd\xfa\xa4\x87\x76\x0d\x25\xd9\x60\xa4\x7b\x03\x41\xe9\x22\x43\x2b\xb0\x8d\x0a\xde\xd6\x3f\x5c\x58\x82\x92\x79\x42\x51\x18\x3b\x24\xff\x19\x12\x87\x53\x2f\xdf\xb2\xfd\x40\x54\xdc\x0d\xbb\x91\x29\xfe\x98\x5c\xd2\x4d\xca\xb4\x10\x12\x9f\x86\xb8\xf2\x02\x17\x41\xe8\x9f\x28\x2e\x80\x2c\xbd\xc0\x45\x10\xf3\x50\x6e\x54\xf1\x34\xc6\xbd\xbb\xbf\x08\x61\x35\x4f\x2e\xb0\x58\xd3\xf5\xa4\x0d\xb3\x2b\x92\xb7\xaf\xbc\xec\x67\x97\xcc\x77\x32\x75\xf1\x8e\x4e\xd2\x32\x85\xd2\x2d\xc0\xa8\x2f\x00\xf7\x25\xd2\xe7\xf5\x59\x05\x40\xaa\x67\xf9\xef\xf6\x89\x73\x6c\xdb\x0d\x2d\x1a\x7c\x74\xd3\x57\xe0\xa0\xb9\x7f\x4d\xfe\xf8\x31\xb5\x3d\xe3\xee\xba\xfb\x9f\x71\x27\xd5\x70\x3a\xa4\xde\x6d\x39\xc7\xa9\x90\x53\xea\x33\x72\x40\xa2\x6d\x59\x45\xa1\x4d\xaa\xc7\xa4\x45\xe6\x84\x5f\xcc\x41\x8a\xc2\x5b\xee\xbd\x42\xad\xdd\xbb\x9f\x60\xf4\xe8\xc7\x69\x60\xf4\x6e\x18\x1f\x02\xf4\x4b\xf2\x2c\x3c\x6e\x6e\xb8\xcf\xbd\xae\x85\xb4\x6f\xa0\x6a\xc3\x56\x98\x13\x33\xfd\xc4\xba\x8d\xcc\x14\x8c\xde\x9d\x15\x89\x61\x3e\xb6\x85\x3c\x0b\xe7\xaa\x96\x2f\xc6\xa3\xd3\xa0\xe1\x0f\x41\xf1\x7a\xfb\xaa\x9d\x1a\x8e\xfc\xdf\x01\x00\x00\xff\xff\xe3\x8a\xc9\x38\x39\x0d\x00\x00") func svcServerRunGotemplateBytes() ([]byte, error) { return bindataRead( @@ -233,12 +233,12 @@ func svcServerRunGotemplate() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "svc/server/run.gotemplate", size: 3253, mode: os.FileMode(0644), modTime: time.Unix(1464111000, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x16, 0xe7, 0xd7, 0x86, 0xdd, 0x83, 0x59, 0x68, 0xeb, 0xd7, 0x53, 0x8c, 0xda, 0xed, 0xdb, 0xc7, 0x2, 0x5b, 0xa3, 0xac, 0x6e, 0xdf, 0x4c, 0xaf, 0x97, 0x3c, 0x6, 0xd4, 0xbb, 0x28, 0x60, 0xac}} + info := bindataFileInfo{name: "svc/server/run.gotemplate", size: 3385, mode: os.FileMode(0644), modTime: time.Unix(1464111000, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x67, 0xdd, 0x59, 0xa1, 0xce, 0x1a, 0x2b, 0x34, 0xcd, 0x93, 0x43, 0x90, 0xf9, 0xe2, 0x37, 0x40, 0x9e, 0xee, 0x47, 0x3e, 0xb1, 0x99, 0x56, 0x52, 0x40, 0xf, 0xd1, 0x8b, 0x51, 0x82, 0x90, 0x6a}} return a, nil } -var _svcTransport_grpcGotemplate = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x4d\x6f\xdb\x38\x10\x3d\x8b\xbf\x62\xd6\x28\x16\x56\xe1\xd0\x7b\x0e\x90\x4b\x93\x6e\x5b\xec\xe6\x03\x59\xa3\x7b\x28\x8a\x82\x96\xc6\x12\x61\x89\x54\x48\xca\x89\x97\xd0\x7f\x5f\x0c\xf5\x61\x39\x76\x1c\x1f\x0c\x58\xe4\xe3\xcc\x9b\xf7\x86\x23\xcd\xe7\x70\xad\x53\x84\x0c\x15\x1a\xe1\x30\x85\xe5\x16\x9c\xa9\xad\xe5\x70\x73\x0f\x77\xf7\x0b\xf8\x7c\xf3\x6d\xc1\xd9\x7c\x0e\x8f\x68\x6a\xa5\xa4\xca\x5a\x00\x3c\xcb\xa2\x00\xbd\x41\xf3\x6c\xa4\x43\x70\xb9\xb4\xb0\x92\x05\x06\xf0\x77\x34\x56\x6a\x75\x09\xde\xf3\xee\x7f\xd3\x8c\x36\xe0\x46\x38\x1c\xef\xd2\x73\xd3\x30\x56\x89\x64\x2d\x32\x04\xbb\x49\x18\xe1\x17\x7d\x58\xa8\x8c\xde\xc8\x14\x2d\x58\x34\x1b\x34\x17\x56\xa6\x08\x4b\xa9\x52\xa9\x32\x0b\x2b\x6d\xc0\xe5\x08\xd9\xe3\xc3\x35\x38\x23\x94\xad\xb4\x71\x81\xcb\x37\x07\xb5\x93\x85\xfc\x0f\x6d\x80\x0c\xbb\xf3\xcc\x54\x09\xff\x27\x84\xe3\x8c\xc9\x92\x16\x61\xca\xa2\x89\x42\x37\xcf\x9d\xab\x26\x2c\x9a\x24\x5a\x39\x7c\x71\x13\xc6\xa2\x49\xa6\x75\x56\x20\xcf\x74\x21\x54\xc6\xb5\xc9\x42\x88\x79\x89\x4e\xa4\xc2\x09\xc2\xd0\xc2\x90\x01\x26\x99\x74\x79\xbd\xe4\x89\x2e\xe7\x99\xbe\x58\x4b\x37\xa7\xdf\x3e\x05\x3a\xd6\x97\x4a\x6c\x64\x82\x2c\xaa\x96\x30\xf1\x9e\x3f\x7c\xfa\x16\x68\x3d\x08\x97\xc3\x45\xd3\x4c\x58\x1c\x74\xb9\x15\x6b\xfc\xf2\xf8\x70\xdd\xb2\x87\x52\xac\xd1\x82\x00\x8b\x0e\xf4\x0a\x50\xa5\x95\x96\xca\x59\x10\x1b\x21\x0b\xb1\x2c\x10\x04\xed\x07\x79\xbc\xe7\x5d\x1a\x7e\x27\x4a\x6c\x9a\x5e\x82\x55\xad\x92\x57\x91\xa7\xbb\x50\x9f\xfb\x7f\x33\xd0\x95\x93\x5a\x59\xe0\x9c\xef\xd5\xdb\x89\x79\x1f\xb6\x63\xa8\x96\xfc\x8d\x5c\xe0\x59\x64\x47\x58\x0b\x97\x57\xf0\xe3\xe7\xdb\xc1\x3c\x8b\xa2\x63\xbb\x9f\x70\xa5\x0d\x4e\x7b\x07\x16\xfa\xba\xb5\x2b\x9e\xb1\xa8\x79\x9d\xe3\x0a\x44\x55\xa1\x4a\xa7\x7b\xcb\x43\x39\x9c\xf3\x98\x45\x06\x5d\x6d\x14\xfc\x4e\xd9\xda\x1c\x3e\xd8\xe3\x3d\x2c\xf4\xdf\xfa\x19\x0d\xec\x95\x04\x4d\xc3\x22\xef\x8d\x50\x19\xc2\x07\x49\x85\x0c\xfb\xb7\xe8\x72\x9d\x5a\x42\x44\xde\xf7\xc7\x3f\xc8\x4e\x8b\x4b\xd8\x2f\xe9\x0e\x9f\x3b\xd5\x59\x14\x45\x83\xf2\xdc\xfb\xe1\x48\x6f\xc2\x8c\x10\x37\x98\xe8\x34\x98\x35\x42\x3c\xe2\x53\x8d\xb6\x05\x7c\x56\x47\x01\xb6\xd2\xca\x62\x40\xec\x29\xc1\x39\xa7\x45\xd2\xce\xfb\x0b\xea\x22\x62\xde\xb0\x26\xb4\xdc\x4e\x10\x90\x65\x55\x60\x89\xd4\x15\x74\xa3\xbc\xff\xa2\x83\x14\xc7\xbd\x96\xca\xa1\x59\x89\x04\x99\xdb\x56\x38\x8e\x63\x9d\xa9\x13\x07\x9e\xbd\xaf\xdf\x11\xf9\x00\x5e\xe9\xf7\x55\xa8\xb4\x40\xc3\x76\xe4\x5b\xe6\x5d\x98\x30\x24\x46\xd9\x9d\xde\x15\x72\x7e\x0d\xef\x52\x0d\xb7\x68\x6a\xe1\xe3\x2e\x55\xbc\x0b\x3f\xb0\x9f\x26\xee\x05\xba\xe1\xc2\xbb\xae\x9d\x81\xc1\x27\xf8\x18\xee\xcd\x0e\xdf\x39\xba\xd8\x56\x3d\xa9\x18\xa6\x87\xa0\xd6\xd5\x11\x6a\x06\x68\x8c\xa6\xe4\x2c\xfa\x45\xa1\xab\xb0\x42\xb4\xa9\xa7\x0e\xf4\x6c\xaf\x14\x75\x0b\x71\x0b\x5c\x62\x16\xc9\x55\x38\xf4\xdb\x15\x28\x59\x50\xa8\xfe\x86\x28\x59\x84\x78\xe1\xa2\x75\x6b\x06\x2b\x7e\x0e\xb5\x78\x46\xc7\x59\xc3\xbc\x6f\x8d\x22\x9b\x3a\xa9\xdb\xae\x7e\x5f\xe7\xf9\x1c\x4e\x5d\x00\x90\x34\xf0\x5e\x0d\xfb\xf6\x40\x87\xf8\x93\x8c\x72\xb9\x70\x64\xc3\x06\x0d\x8d\xcb\xd0\xe8\xed\x90\x3c\xec\x37\xd3\x45\x76\x1a\x04\xd4\x16\xcd\x45\xaa\x4b\x21\xd5\x29\x30\x87\x07\x23\x4b\x61\x64\xb1\xa5\x23\xab\xba\x00\xa9\xc2\xa4\x1e\xcd\xdc\x53\x75\x4c\x7f\x1d\x76\x09\xd5\xf2\x88\x4f\xbb\xae\xf4\xd4\x12\xa3\xa7\xb1\xf5\xd4\x52\x97\x57\xfd\x99\x63\xf6\x1c\xb4\xd7\xc8\xcf\xa7\x13\x4e\xb5\xe3\xe5\x2c\xa7\x4e\x4e\xa2\xa3\x56\xb5\x27\x7a\xc8\x5b\x5e\xbd\xef\x42\x97\x22\x78\x76\xc2\xd9\xaa\xd8\x9e\x65\xd5\xc9\x42\x8e\x79\x35\x30\x38\xd3\x2c\x5b\x91\x8a\xfd\xa9\xf3\x6e\xd3\xc8\x2f\x5b\x1d\x33\xec\x2b\x16\x15\x1a\xcb\xda\x1a\x0e\xde\x96\xc7\x67\x51\x99\x0e\x48\x7e\x7b\x13\xbf\x06\x10\x5d\x9a\xa8\xeb\x19\x6c\x02\xe5\xd0\x04\x65\x1a\x66\x84\x5c\xc1\x66\x3c\x33\xda\x0f\x1c\x84\x35\x6e\x83\xdb\x69\x4a\x1f\x9b\xda\xe5\x24\x71\x9f\x85\x06\x74\x29\x1c\x4c\xd7\x31\x3c\xe7\x32\xc9\x03\xb4\x28\xa0\x20\xbb\xba\x28\x42\xa5\xe1\xa5\x43\xdf\x67\xfc\x5a\x28\xad\x64\x22\x8a\xaf\x28\x52\x34\x7f\xe1\x96\x3e\x7f\x5c\x97\xc8\xea\xb6\x65\xa4\x83\x44\x28\x58\x62\x1f\x22\x49\xd0\x5a\x4c\x29\x37\x4a\x97\xa3\xe9\x32\xd3\x3e\x49\x71\x35\xd4\xfa\xaf\x74\xf9\x77\x51\xd4\xd8\x8e\x44\xaa\xf5\xc7\x1f\x3f\xe3\x77\x81\x6f\xb0\x9b\xae\xe3\x5d\x84\xf0\x6e\x1d\xac\x4b\xdc\x0b\x6b\xd8\xff\x01\x00\x00\xff\xff\x71\x92\xdd\x9a\x92\x0b\x00\x00") +var _svcTransport_grpcGotemplate = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x5d\x6f\xe2\x38\x14\x7d\x06\x89\xff\x70\x17\x8d\x56\x30\xa2\xce\x3e\x57\xea\xcb\xb4\xdd\x69\xb5\xdb\x0f\x75\xd1\xec\xc3\x68\x34\x32\xc9\x25\xb1\x48\xec\xd4\x36\xb4\xac\xc5\x7f\x5f\x5d\xdb\x09\xa1\x50\xca\x3c\x20\x11\xfb\xf8\x7e\x9c\x73\x7c\x93\x24\x81\x4b\x95\x21\xe4\x28\x51\x73\x8b\x19\xcc\xd6\x60\xf5\xd2\x18\x06\x57\x0f\x70\xff\x30\x85\xeb\xab\xdb\x29\x1b\xf4\x93\x04\x9e\x50\x2f\xa5\x14\x32\x0f\x08\x78\x11\x65\x09\x6a\x85\xfa\x45\x0b\x8b\x60\x0b\x61\x60\x2e\x4a\x0c\xe8\x6f\xa8\x8d\x50\xf2\x1c\x9c\x63\xf1\xff\x66\xd3\xdd\x81\x2b\x6e\xb1\xbb\x4d\xcf\x04\x19\xf4\x6b\x9e\x2e\x78\x8e\x60\x56\x29\x3d\x26\x09\x4c\x9b\xe0\x50\x6b\xb5\x12\x19\x1a\x30\xa8\x57\xa8\xcf\x8c\xc8\x10\x66\x42\x66\x42\xe6\x06\xe6\x4a\x83\x2d\x10\xf2\xa7\xc7\x4b\xb0\x9a\x4b\x53\x2b\x6d\x43\x45\xb7\x16\x96\x56\x94\xe2\x3f\x34\x1e\xd3\x6e\x27\xb9\xae\x53\xf6\x8f\x8f\xc7\x28\xa1\xa8\x68\x19\x46\x83\x7e\x6f\x28\xd1\x26\x85\xb5\xf5\x90\x1e\x52\x25\x2d\xbe\xda\x21\x81\x7a\xc3\x5c\xa9\xbc\x44\x96\xab\x92\xcb\x9c\x29\x9d\xfb\x40\x49\x85\x96\x67\xdc\xf2\x80\xa2\xa5\x36\x13\x0c\x73\x61\x8b\xe5\x8c\xa5\xaa\x4a\x72\x75\xb6\x10\x36\xa1\xdf\x6e\x29\xe1\x60\xd3\x35\xd5\x25\x52\x1c\xf4\x7b\xf5\x0c\x86\xce\xb1\xc7\x2f\xb7\xbe\xbe\x47\x6e\x0b\x38\xdb\x6c\x86\x83\xfe\x38\xd2\x74\xc7\x17\xf8\xf5\xe9\xf1\x32\xf4\x02\x15\x5f\xa0\x01\x0e\x06\x2d\xa8\x39\xa0\xcc\x6a\x25\xa4\x35\xc0\x57\x5c\x94\x7c\x56\x22\x70\xda\xf7\x6c\x39\xc7\x62\x2a\x76\xcf\x2b\xdc\x6c\x5a\x42\xe6\x4b\x99\xbe\x09\x3d\xda\xc6\xba\x6e\xfe\x4d\x40\xd5\x56\x28\x69\x80\x31\xb6\xd3\x76\xe4\xf6\xc1\x6f\x8f\xa1\x9e\xb1\x77\x92\x81\x1b\xf4\x7b\xa6\x03\x36\x70\x7e\x01\xdf\x7f\xbc\x1f\x8d\x0e\xf4\x0e\x6d\x7f\xc1\xb9\xd2\x38\x6a\xc4\x98\xaa\xcb\xa0\xdd\x78\x32\xe8\xf7\x36\x7b\x69\x2e\x80\xd7\x35\xca\x6c\xb4\xb3\xdc\xb6\xc4\x18\x1b\x0f\xfa\x3d\x8d\x76\xa9\x25\xfc\x4e\x09\x43\x1a\x17\x94\x72\x0e\xa6\xea\x6f\xf5\x82\x1a\x76\x1a\x03\x32\x74\xcf\x39\xcd\x65\x8e\xf0\x49\x50\x3b\x2d\xe0\x0e\x6d\xa1\x32\xe3\x21\x3d\xe7\x9a\x00\x9f\x44\xe4\xe4\x1c\x76\x1b\xbb\xc7\x97\xc8\x3e\x1d\xe8\xb5\x12\x30\xe7\xda\x33\x8d\x1a\x13\x0f\xb9\xc2\x54\x65\x5e\xb6\x0e\xe4\x09\x9f\x97\x68\x22\xe2\x5a\x1e\x44\x98\x5a\x49\x83\x01\xb2\xc3\x08\x63\xcc\xaf\x7a\x1a\x9d\x3b\x23\x53\xf9\x06\x36\x83\xfe\x26\xba\x70\xcb\x0e\x88\xaa\x2e\xb1\x42\xf2\x09\x5d\x39\xe7\xbe\x2a\x4f\xcb\x61\xf5\x85\xb4\xa8\xe7\x9c\xcc\x6e\xd7\x35\x76\x03\x19\xab\x97\xa9\x25\x7f\x9c\x40\xe6\x01\x2e\x01\xde\x90\x79\xc3\x65\x56\xa2\xa6\x78\x6d\x13\x4d\x03\x31\x96\x9f\x26\x9d\x1a\xac\xda\xf6\xf3\x0b\xad\x7c\x5c\xb0\xbf\x60\x23\x03\x9f\xb7\xc9\xc6\xdb\x04\x6d\x0f\xa3\xd4\xbe\x42\x1c\x41\x2c\xda\x79\x02\x1a\x9f\xe1\xb3\xbf\x52\x5b\x7c\x94\x78\xba\xae\x9b\xb2\xc6\x30\xda\x07\x05\x95\x3b\xa8\x09\xa0\xd6\x8a\x92\x0f\xfa\xbd\x9f\x14\xbb\xf6\x4b\x54\x38\xd9\x6c\x8f\xd6\x70\xd9\xc8\x3e\x54\x9c\x2f\x86\xee\x89\x98\xfb\x53\xbf\x5d\x80\x14\xa5\x0f\xd6\x5c\x1d\x29\x4a\x1f\x31\x5e\xc2\xb8\xaa\xb1\x66\xa7\xd4\x37\x9e\x50\x00\x2f\x94\x73\x51\x34\xaf\x58\x64\x3d\xf8\xfd\x14\xca\x93\x04\x8e\x5d\x0e\x10\x34\x17\xdf\xbc\x21\xc2\x81\x88\xf8\x93\x34\xb3\x05\xb7\xa4\xc8\x0a\x35\x4d\xd5\xe0\xfe\x30\x4c\xf7\x1d\xa8\x63\x68\xab\x80\xc3\xd2\xa0\x3e\xcb\x54\xc5\x85\x3c\x06\x66\xf0\xa8\x45\xc5\xb5\x28\xd7\x74\x64\xbe\x2c\x41\x48\x3f\xd1\xbb\xb3\xf9\x58\x27\xa3\x9f\xfb\x96\xa1\x6e\x9e\xf0\x79\x6b\x52\x47\xfe\xe8\x3c\xed\xf8\x80\x0c\x76\x7e\xd1\x1c\x3a\xa4\xd3\x9e\xd9\xba\xca\x3e\x7f\xa0\x59\x98\x40\x27\x6a\x76\x74\x5c\x1d\x14\x2d\x9c\x68\x20\xef\xaa\xf6\xb1\x1e\x31\x87\x57\xef\x88\xc6\x75\xb9\x3e\x4d\xb4\xa3\xad\x1c\x52\xad\x2d\xe1\x54\xd9\x4c\x4d\x4c\x36\xc7\x4e\xbb\x60\x5d\xe5\x4c\xfd\x9e\x74\x37\x58\xd6\xa8\x0d\x3d\xf9\x5e\xf6\xde\xb2\x87\x47\x55\x95\xb5\x48\x76\x77\x35\x7e\x0b\xf0\x65\xd3\xcc\x5d\x4c\x60\xe5\x4b\xf7\x86\xa8\xb2\x30\x41\xc4\x1c\x56\x3b\x23\x25\x7c\x22\x21\x2c\x70\xed\xa5\xcf\x32\xfa\x80\x55\xb6\x20\xba\x9b\x44\x34\xc4\x2b\x6e\x61\xb4\x18\xc3\x4b\x21\xd2\xc2\x43\xcb\x12\x4a\x92\xae\x09\xc3\x65\xe6\x5f\x50\xf4\xa5\xc7\x2e\xb9\x54\x52\xa4\xbc\xbc\x41\x9e\xa1\xfe\x0b\xd7\xf4\xf5\x64\x63\x26\xa3\x82\x81\x84\x85\x94\x4b\x98\x61\x1b\x23\x4d\xd1\x18\xcc\x28\x3b\x0a\x5b\xa0\x8e\xb9\x3d\x80\x08\xb9\x68\x3b\xfe\x57\xd8\xe2\x1b\x2f\x97\x18\xc6\x26\x35\xfc\xfd\x8f\x1f\xe3\x8f\x91\xef\x14\x38\x5a\x8c\x3b\x21\xe2\xfb\x78\xab\x65\x6a\x5f\xbd\x8a\xff\x07\x00\x00\xff\xff\xde\xdb\x4e\x58\xf0\x0b\x00\x00") func svcTransport_grpcGotemplateBytes() ([]byte, error) { return bindataRead( @@ -253,12 +253,12 @@ func svcTransport_grpcGotemplate() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "svc/transport_grpc.gotemplate", size: 2962, mode: os.FileMode(0644), modTime: time.Unix(1464111000, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa2, 0xc7, 0xff, 0xf, 0x16, 0xfd, 0xd8, 0x43, 0xfc, 0x25, 0x2b, 0x9c, 0xfe, 0x3c, 0xf, 0x3a, 0x3e, 0xc7, 0x21, 0xdf, 0x32, 0x41, 0x25, 0x39, 0x7d, 0x4b, 0xb6, 0xc2, 0xc, 0x27, 0x81, 0x3c}} + info := bindataFileInfo{name: "svc/transport_grpc.gotemplate", size: 3056, mode: os.FileMode(0644), modTime: time.Unix(1464111000, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xad, 0x86, 0xa1, 0x23, 0x1f, 0x58, 0xd7, 0x34, 0xf1, 0x53, 0xb1, 0x6e, 0x3e, 0xc1, 0x64, 0x60, 0x4, 0x13, 0xf9, 0x2a, 0xee, 0xec, 0x12, 0x5c, 0x94, 0x40, 0x4d, 0x83, 0x38, 0xb5, 0x4b, 0x74}} return a, nil } -var _svcTransport_httpGotemplate = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2c\xcb\xb1\x0d\xc2\x30\x10\x05\xd0\x3e\x53\x5c\x1d\x09\xdf\x1a\x29\x91\xe2\x05\xac\xf0\x31\x08\x93\xb3\xce\x1f\x1a\xeb\x76\xa7\x61\x80\x37\xa7\xae\xb2\x03\x52\xed\x42\xff\x8c\xa1\x15\x67\xb5\xd7\x93\xfa\x20\x3b\xbd\x9c\xa3\x9b\x53\x89\x77\x6f\x85\x18\xa9\x9a\xdc\xcd\xe5\xb0\x1b\x64\xd5\x88\x65\xce\xa3\xb4\x26\x69\xcb\xf9\xba\xa1\x75\x78\xda\xe1\x5f\x78\xfe\x1b\x49\x11\xcb\x2f\x00\x00\xff\xff\xdd\x3a\x4a\x8f\x6a\x00\x00\x00") +var _svcTransport_httpGotemplate = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2c\xcb\x41\x0a\xc2\x30\x10\x05\xd0\xbd\xe0\x1d\x66\x5d\x30\x73\x8d\x2e\x85\xe6\x02\xa1\x7e\xa3\x18\x3b\x61\xf2\x75\x33\xf4\xee\x22\x74\xff\x5e\x84\x4e\xb2\x00\x52\xed\x42\xff\x8c\xa1\x15\x5b\xb5\xd7\x93\xfa\x20\x3b\xbd\x6c\xa3\x9b\x53\x89\x77\x6f\x85\x18\xa9\x9a\xdc\xcd\x65\xb5\x1b\x64\xd2\x7d\x3f\x9f\x22\xd6\xd2\x9a\xa4\x39\xe7\xeb\x8c\xd6\xe1\x69\x81\x7f\xe1\xf9\x48\x92\xfe\xec\x17\x00\x00\xff\xff\xec\x4b\xd0\x56\x6c\x00\x00\x00") func svcTransport_httpGotemplateBytes() ([]byte, error) { return bindataRead( @@ -273,8 +273,8 @@ func svcTransport_httpGotemplate() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "svc/transport_http.gotemplate", size: 106, mode: os.FileMode(0644), modTime: time.Unix(1464111000, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x52, 0x57, 0x56, 0xc6, 0xb4, 0xe5, 0x1f, 0xf4, 0x1d, 0xa5, 0xda, 0x23, 0xea, 0x8f, 0xfb, 0xff, 0xae, 0x4b, 0x12, 0xe4, 0xf6, 0xbf, 0x11, 0xa6, 0x4, 0x83, 0x53, 0xfd, 0xbf, 0xce, 0x4a, 0x47}} + info := bindataFileInfo{name: "svc/transport_http.gotemplate", size: 108, mode: os.FileMode(0644), modTime: time.Unix(1464111000, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa4, 0x6d, 0xd0, 0x90, 0xb, 0xa7, 0xdc, 0xed, 0x93, 0x1e, 0xb8, 0x4d, 0xb9, 0x58, 0x20, 0xd6, 0x10, 0x56, 0x1f, 0x4b, 0xf4, 0x55, 0xdb, 0x96, 0xa5, 0xfd, 0x46, 0xe0, 0x5f, 0x40, 0xf4, 0x57}} return a, nil } @@ -425,31 +425,31 @@ type bintree struct { } var _bintree = &bintree{nil, map[string]*bintree{ - "cmd": &bintree{nil, map[string]*bintree{ - "NAME": &bintree{nil, map[string]*bintree{ - "main.gotemplate": &bintree{cmdNameMainGotemplate, map[string]*bintree{}}, + "cmd": {nil, map[string]*bintree{ + "NAME": {nil, map[string]*bintree{ + "main.gotemplate": {cmdNameMainGotemplate, map[string]*bintree{}}, }}, }}, - "handlers": &bintree{nil, map[string]*bintree{ - "handlers.gotemplate": &bintree{handlersHandlersGotemplate, map[string]*bintree{}}, - "hooks.gotemplate": &bintree{handlersHooksGotemplate, map[string]*bintree{}}, - "middlewares.gotemplate": &bintree{handlersMiddlewaresGotemplate, map[string]*bintree{}}, + "handlers": {nil, map[string]*bintree{ + "handlers.gotemplate": {handlersHandlersGotemplate, map[string]*bintree{}}, + "hooks.gotemplate": {handlersHooksGotemplate, map[string]*bintree{}}, + "middlewares.gotemplate": {handlersMiddlewaresGotemplate, map[string]*bintree{}}, }}, - "svc": &bintree{nil, map[string]*bintree{ - "client": &bintree{nil, map[string]*bintree{ - "grpc": &bintree{nil, map[string]*bintree{ - "client.gotemplate": &bintree{svcClientGrpcClientGotemplate, map[string]*bintree{}}, + "svc": {nil, map[string]*bintree{ + "client": {nil, map[string]*bintree{ + "grpc": {nil, map[string]*bintree{ + "client.gotemplate": {svcClientGrpcClientGotemplate, map[string]*bintree{}}, }}, - "http": &bintree{nil, map[string]*bintree{ - "client.gotemplate": &bintree{svcClientHttpClientGotemplate, map[string]*bintree{}}, + "http": {nil, map[string]*bintree{ + "client.gotemplate": {svcClientHttpClientGotemplate, map[string]*bintree{}}, }}, }}, - "endpoints.gotemplate": &bintree{svcEndpointsGotemplate, map[string]*bintree{}}, - "server": &bintree{nil, map[string]*bintree{ - "run.gotemplate": &bintree{svcServerRunGotemplate, map[string]*bintree{}}, + "endpoints.gotemplate": {svcEndpointsGotemplate, map[string]*bintree{}}, + "server": {nil, map[string]*bintree{ + "run.gotemplate": {svcServerRunGotemplate, map[string]*bintree{}}, }}, - "transport_grpc.gotemplate": &bintree{svcTransport_grpcGotemplate, map[string]*bintree{}}, - "transport_http.gotemplate": &bintree{svcTransport_httpGotemplate, map[string]*bintree{}}, + "transport_grpc.gotemplate": {svcTransport_grpcGotemplate, map[string]*bintree{}}, + "transport_http.gotemplate": {svcTransport_httpGotemplate, map[string]*bintree{}}, }}, }} From def6521d9b4ee851e97fd976e7a231281ba927e0 Mon Sep 17 00:00:00 2001 From: Nick Godzieba Date: Sat, 6 Mar 2021 20:44:42 +0100 Subject: [PATCH 2/8] added import statement --- gengokit/template/NAME-service/svc/endpoints.gotemplate | 1 + 1 file changed, 1 insertion(+) diff --git a/gengokit/template/NAME-service/svc/endpoints.gotemplate b/gengokit/template/NAME-service/svc/endpoints.gotemplate index 9ee13984..b4093624 100644 --- a/gengokit/template/NAME-service/svc/endpoints.gotemplate +++ b/gengokit/template/NAME-service/svc/endpoints.gotemplate @@ -13,6 +13,7 @@ package svc import ( "fmt" "context" + httptransport "github.com/go-kit/kit/transport/http" "github.com/go-kit/kit/endpoint" From 32e69629368d4547c71313e35b34d2cb24f74ade Mon Sep 17 00:00:00 2001 From: Nick Godzieba Date: Sat, 6 Mar 2021 22:53:13 +0100 Subject: [PATCH 3/8] added NewEndpoints to ensure initialized private fields --- .../middlewares/setup_test.go | 8 ++-- .../transport/http_benchmarks_test.go | 5 +-- .../transport/setup_test.go | 40 +++++++++---------- gengokit/httptransport/templates/client.go | 6 +-- .../svc/client/grpc/client.gotemplate | 6 +-- .../NAME-service/svc/endpoints.gotemplate | 11 +++-- .../NAME-service/svc/server/run.gotemplate | 5 +-- gengokit/template/template.go | 24 +++++------ 8 files changed, 54 insertions(+), 51 deletions(-) diff --git a/cmd/_integration-tests/middlewares/setup_test.go b/cmd/_integration-tests/middlewares/setup_test.go index cd4f9888..0d2022f9 100644 --- a/cmd/_integration-tests/middlewares/setup_test.go +++ b/cmd/_integration-tests/middlewares/setup_test.go @@ -23,10 +23,10 @@ func TestMain(m *testing.M) { sometimesWrapped := svc.MakeSometimesWrappedEndpoint(service) labeledTestHandler := svc.MakeLabeledTestHandlerEndpoint(service) - middlewareEndpoints = svc.Endpoints{ - AlwaysWrappedEndpoint: alwaysWrapped, - SometimesWrappedEndpoint: sometimesWrapped, - LabeledTestHandlerEndpoint: labeledTestHandler, + middlewareEndpoints = svc.NewEndpoints() + middlewareEndpoints.AlwaysWrappedEndpoint = alwaysWrapped + middlewareEndpoints.SometimesWrappedEndpoint = sometimesWrapped + middlewareEndpoints.LabeledTestHandlerEndpoint = labeledTestHandler } middlewareEndpoints = handlers.WrapEndpoints(middlewareEndpoints) diff --git a/cmd/_integration-tests/transport/http_benchmarks_test.go b/cmd/_integration-tests/transport/http_benchmarks_test.go index a72baa12..7c8119ae 100644 --- a/cmd/_integration-tests/transport/http_benchmarks_test.go +++ b/cmd/_integration-tests/transport/http_benchmarks_test.go @@ -67,9 +67,8 @@ func BenchmarkGetWithQueryClient_NoNetwork(b *testing.B) { service = handlers.WrapService(service) } var getwithqueryEndpoint = svc.MakeGetWithQueryEndpoint(service) - endpoints := svc.Endpoints{ - GetWithQueryEndpoint: getwithqueryEndpoint, - } + endpoints := svc.NewEndpoints() + endpoints.GetWithQueryEndpoint = getwithqueryEndpoint ctx := context.WithValue(context.Background(), "request-url", "/getwithquery") ctx = context.WithValue(ctx, "transport", "HTTPJSON") server := httptransport.NewServer( diff --git a/cmd/_integration-tests/transport/setup_test.go b/cmd/_integration-tests/transport/setup_test.go index e1660d13..0a052029 100644 --- a/cmd/_integration-tests/transport/setup_test.go +++ b/cmd/_integration-tests/transport/setup_test.go @@ -43,26 +43,26 @@ func TestMain(m *testing.M) { StatusCodeAndHeadersE := svc.MakeStatusCodeAndHeadersEndpoint(service) CustomVerbE := svc.MakeCustomVerbEndpoint(service) - endpoints := svc.Endpoints{ - GetWithQueryEndpoint: getWithQueryE, - GetWithRepeatedQueryEndpoint: getWithRepeatedQueryE, - GetWithRepeatedStringQueryEndpoint: getWithRepeatedStringQueryE, - GetWithEnumQueryEndpoint: getWithEnumQueryE, - PostWithNestedMessageBodyEndpoint: postWithNestedMessageBodyE, - CtxToCtxEndpoint: ctxToCtxE, - GetWithCapsPathEndpoint: getWithCapsPathE, - GetWithPathParamsEndpoint: getWithPathParamsE, - GetWithEnumPathEndpoint: getWithEnumPathE, - GetWithOneofQueryEndpoint: getWithOneofQueryE, - EchoOddNamesEndpoint: echoOddNamesE, - ErrorRPCEndpoint: errorRPCE, - ErrorRPCNonJSONEndpoint: errorRPCNonJSONE, - ErrorRPCNonJSONLongEndpoint: errorRPCNonJSONLongE, - X2AOddRPCNameEndpoint: X2AOddRPCNameE, - ContentTypeTestEndpoint: contentTypeTestE, - StatusCodeAndNilHeadersEndpoint: StatusCodeAndNilHeadersE, - StatusCodeAndHeadersEndpoint: StatusCodeAndHeadersE, - CustomVerbEndpoint: CustomVerbE, + endpoints := svc.NewEndpoints() + endpoints.GetWithQueryEndpoint = getWithQueryE + endpoints.GetWithRepeatedQueryEndpoint = getWithRepeatedQueryE + endpoints.GetWithRepeatedStringQueryEndpoint = getWithRepeatedStringQueryE + endpoints.GetWithEnumQueryEndpoint = getWithEnumQueryE + endpoints.PostWithNestedMessageBodyEndpoint = postWithNestedMessageBodyE + endpoints.CtxToCtxEndpoint = ctxToCtxE + endpoints.GetWithCapsPathEndpoint = getWithCapsPathE + endpoints.GetWithPathParamsEndpoint = getWithPathParamsE + endpoints.GetWithEnumPathEndpoint = getWithEnumPathE + endpoints.GetWithOneofQueryEndpoint = getWithOneofQueryE + endpoints.EchoOddNamesEndpoint = echoOddNamesE + endpoints.ErrorRPCEndpoint = errorRPCE + endpoints.ErrorRPCNonJSONEndpoint = errorRPCNonJSONE + endpoints.ErrorRPCNonJSONLongEndpoint = errorRPCNonJSONLongE + endpoints.X2AOddRPCNameEndpoint = X2AOddRPCNameE + endpoints.ContentTypeTestEndpoint = contentTypeTestE + endpoints.StatusCodeAndNilHeadersEndpoint = StatusCodeAndNilHeadersE + endpoints.StatusCodeAndHeadersEndpoint = StatusCodeAndHeadersE + endpoints.CustomVerbEndpoint = CustomVerbE } // http test server diff --git a/gengokit/httptransport/templates/client.go b/gengokit/httptransport/templates/client.go index 3b08b859..a7ea8bce 100644 --- a/gengokit/httptransport/templates/client.go +++ b/gengokit/httptransport/templates/client.go @@ -177,15 +177,15 @@ func New(instance string, options ...httptransport.ClientOption) (pb.{{.Service. {{- end}} {{- end}} - return svc.Endpoints{ + endpoints := svc.NewEndpoints() {{range $method := .HTTPHelper.Methods -}} {{ if $method.Bindings -}} {{ with $binding := index $method.Bindings 0 -}} - {{$method.Name}}Endpoint: {{$binding.Label}}Endpoint, + endpoints{{$method.Name}}Endpoint = {{$binding.Label}}Endpoint {{end}} {{- end}} {{- end}} - }, nil + return endpoints, nil } func copyURL(base *url.URL, path string) *url.URL { diff --git a/gengokit/template/NAME-service/svc/client/grpc/client.gotemplate b/gengokit/template/NAME-service/svc/client/grpc/client.gotemplate index 1215a304..48415ac0 100644 --- a/gengokit/template/NAME-service/svc/client/grpc/client.gotemplate +++ b/gengokit/template/NAME-service/svc/client/grpc/client.gotemplate @@ -55,11 +55,11 @@ func New(conn *grpc.ClientConn, options ...ClientOption) (pb.{{.Service.Name}}Se {{end}} {{end}} - return svc.Endpoints{ + endpoints := svc.NewEndpoints() {{range $i := .Service.Methods -}} - {{$i.Name}}Endpoint: {{ToLower $i.Name}}Endpoint, + endpoints.{{$i.Name}}Endpoint = {{ToLower $i.Name}}Endpoint {{end}} - }, nil + return endpoints, nil } // GRPC Client Decode diff --git a/gengokit/template/NAME-service/svc/endpoints.gotemplate b/gengokit/template/NAME-service/svc/endpoints.gotemplate index b4093624..47055417 100644 --- a/gengokit/template/NAME-service/svc/endpoints.gotemplate +++ b/gengokit/template/NAME-service/svc/endpoints.gotemplate @@ -42,6 +42,14 @@ type Endpoints struct { {{- end}} } +func NewEndpoints() Endpoints { + return Endpoints{ + httpServerOptions: make(map[string][]httptransport.ServerOption), + httpRequestDecoders: make(map[string]httptransport.DecodeRequestFunc), + httpResponseEncoders: make(map[string]httptransport.EncodeResponseFunc), + } +} + // Endpoints {{range $i := .Service.Methods}} func (e Endpoints) {{$i.Name}}(ctx context.Context, in *pb.{{GoName $i.RequestType.Name}}) (*pb.{{GoName $i.ResponseType.Name}}, error) { @@ -148,9 +156,6 @@ func (e *Endpoints) WrapAllWithHttpOptionExcept(serverOption httptransport.Serve delete(included, ex) } - if e.httpServerOptions == nil { - e.httpServerOptions = make(map[string][]httptransport.ServerOption) - } for inc := range included { var options []httptransport.ServerOption if o, ok := e.httpServerOptions[inc]; ok { diff --git a/gengokit/template/NAME-service/svc/server/run.gotemplate b/gengokit/template/NAME-service/svc/server/run.gotemplate index 34e70a2d..9052781c 100644 --- a/gengokit/template/NAME-service/svc/server/run.gotemplate +++ b/gengokit/template/NAME-service/svc/server/run.gotemplate @@ -65,11 +65,10 @@ func NewEndpoints(service pb.{{.Service.Name}}Server) svc.Endpoints { {{end}} ) - endpoints := svc.Endpoints{ + endpoints := svc.NewEndpoints() {{range $i := .Service.Methods -}} - {{$i.Name}}Endpoint: {{ToLower $i.Name}}Endpoint, + endpoints.{{$i.Name}}Endpoint = {{ToLower $i.Name}}Endpoint {{end}} - } // Wrap selected Endpoints with middlewares. See handlers/middlewares.go endpoints = handlers.WrapEndpoints(endpoints) diff --git a/gengokit/template/template.go b/gengokit/template/template.go index 28cdfe15..f06a6c91 100644 --- a/gengokit/template/template.go +++ b/gengokit/template/template.go @@ -4,10 +4,10 @@ // NAME-service/handlers/handlers.gotemplate (63B) // NAME-service/handlers/hooks.gotemplate (63B) // NAME-service/handlers/middlewares.gotemplate (76B) -// NAME-service/svc/client/grpc/client.gotemplate (3.299kB) +// NAME-service/svc/client/grpc/client.gotemplate (3.331kB) // NAME-service/svc/client/http/client.gotemplate (107B) -// NAME-service/svc/endpoints.gotemplate (7.278kB) -// NAME-service/svc/server/run.gotemplate (3.385kB) +// NAME-service/svc/endpoints.gotemplate (7.509kB) +// NAME-service/svc/server/run.gotemplate (3.392kB) // NAME-service/svc/transport_grpc.gotemplate (3.056kB) // NAME-service/svc/transport_http.gotemplate (108B) @@ -158,7 +158,7 @@ func handlersMiddlewaresGotemplate() (*asset, error) { return a, nil } -var _svcClientGrpcClientGotemplate = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\xcd\x6e\xdb\x38\x10\x3e\xdb\x80\xdf\x61\xd6\x08\x16\x52\xa0\xd0\xf7\x2c\x7c\xa9\xd3\x2d\xba\xd8\xa6\x46\x1a\x74\x0f\x45\x51\x30\xd4\x48\x26\x2c\x93\x2a\x49\xdb\x31\x04\xbd\xfb\x62\x48\xca\x96\x12\xc7\xed\xc1\xb0\xc8\x19\xce\xcf\xf7\xcd\x70\x38\x9b\xc1\x42\xe7\x08\x25\x2a\x34\xdc\x61\x0e\x4f\x07\x70\x66\x6b\x2d\x83\xbb\xcf\x70\xff\xf9\x11\xde\xdf\x7d\x7c\x64\x93\xf1\x6c\x06\x0f\x68\xb6\x4a\x49\x55\x06\x0d\xd8\xcb\xaa\x02\xbd\x43\xb3\x37\xd2\x21\xb8\x95\xb4\x50\xc8\x0a\x83\xf6\x57\x34\x56\x6a\x75\x0b\x4d\xc3\xe2\x77\xdb\xf6\x25\x70\xc7\x1d\xf6\xc5\xb4\x26\x15\xaf\xb4\xe4\x62\xcd\x4b\x84\xd2\xd4\x02\x6a\xa3\x77\x32\x47\x0b\x1c\xca\x87\xe5\x02\x44\x25\x51\x39\x28\xb4\x01\xb7\x42\x32\xf1\x05\xcd\x4e\x0a\x64\xf7\x7c\x83\x6d\x0b\x36\x2e\x27\xe3\xba\x67\x87\x4c\xcb\x4d\xad\x8d\x83\x64\x32\x1e\x4d\x85\x56\x0e\x9f\xdd\x94\xbe\x4b\xad\xcb\x0a\x59\xa9\x2b\xae\x4a\xa6\x4d\x39\xa3\x13\x17\x44\xb3\x0d\x3a\x9e\x73\xc7\x83\x8e\x74\xab\xed\x13\x13\x7a\x33\xab\xd7\xe5\x0c\x8d\xd1\xc6\x4e\xc9\xe1\x40\x56\xea\x9b\xb5\x74\x33\xfa\xa1\xca\x6b\x2d\x95\xf7\x4e\xf6\x9c\xe1\xca\xfa\xd8\xde\x38\x70\x54\xe8\x22\x9b\x8c\x47\xb3\x19\x3c\x12\xec\x31\x7d\xf2\xd6\x34\xec\xa3\xcf\x71\xc9\xdd\x0a\x6e\xda\x16\x66\x76\xe7\x13\xa9\x9f\x80\xa4\xcb\x77\x43\xf9\x74\x32\x4e\x23\xe8\xf7\xb8\x07\x83\x6e\x6b\x94\x05\xae\x3a\x14\xe1\x89\x8b\x75\x28\x8d\x21\xfe\x42\x2b\x85\xc2\x49\xad\x18\x7c\x74\x20\x2d\xb1\xe1\x0d\x19\xb4\xb5\x56\x56\x3e\xc9\x4a\xba\x03\xe8\xc2\xf3\x24\x78\x55\xa1\x01\xa7\x21\x97\xbc\xca\x80\xab\x1c\x2a\xee\xd0\x80\xa8\xb4\xc5\x2c\x28\x9d\x8c\x4e\xc6\xc5\x56\x09\x8a\x2a\xa1\x5d\xb8\xa6\xc4\xd9\xc2\x3b\x5f\x68\xa5\x32\xd0\x35\x29\x5a\x60\x2c\x6e\x7f\xf6\x1b\x29\x24\xf5\x13\x7b\x55\x16\xb4\x42\x93\x81\x67\x27\x85\x66\x32\x1e\xed\xb8\x01\x21\x62\x42\x0b\xad\x0a\x59\x7a\x60\xa9\xb4\x7e\x64\x50\xc0\xed\x1c\x0c\x57\x25\x1e\x5d\xd1\xa9\x11\x1a\x43\x92\x22\xf9\x53\x88\x94\x36\x64\x41\x56\xe1\x8f\x39\x28\x59\x05\x9d\x51\x40\x92\x36\xa2\x4b\xcb\xfe\x33\xbc\x4e\xd0\x98\x0c\xa6\x82\x2b\xa5\x1d\xf0\xba\xae\x0e\xd1\xf8\xd4\x9b\x6a\x27\xe3\x91\xef\x82\x91\xe8\xa5\x64\xc9\xdf\xb7\xef\x83\x4a\x19\xe4\xec\x7d\x9e\x13\xbf\xc3\x42\x1b\x4c\x7c\x48\xb1\xe2\xbf\xf2\x6a\x8b\xf6\x51\x7f\x78\x58\x2e\x3e\xc5\x32\x4e\x84\x60\x2b\xe4\x39\x1a\x9b\xa6\x59\x88\x61\xd4\x34\x37\xb0\x97\x6e\x05\x57\x0e\x29\x00\x46\xfd\x39\xea\x6d\xd7\xeb\x92\xb0\x25\xd9\x95\x43\x16\xbb\x36\xc0\xed\x3d\x92\x6a\x00\xf0\x4a\x76\x5a\x1d\x2b\x9f\xd0\xad\x74\x6e\xa3\xa6\xe7\xa2\x69\x1e\xf5\xbf\x7a\x8f\x06\xae\x64\x64\xed\x7d\x6c\x14\xe8\x3a\x86\x75\x3b\xe1\x58\x00\x9b\x3c\xbd\x7d\x74\x0e\x43\x64\xee\x71\x1f\xc0\x49\xe2\x61\x42\x46\x65\xdd\x62\xda\x34\x5d\x66\x6d\xcb\x9a\xa6\x1f\x74\xd8\x9c\x0e\x74\xe5\xab\xdd\xf7\x4a\xe8\x1c\x09\xdf\x9e\xf8\x01\x7f\x6e\xd1\xba\xa3\xd2\x1d\x9e\x55\xf2\xad\x83\x47\x2d\x5f\xc9\x1f\xb4\x87\xf9\x4a\xb2\x4e\xfe\x78\xa8\xbb\x60\x9a\xf6\xa8\x3c\x28\x19\xc6\x58\x27\x48\x8f\xa0\x25\x69\xd8\xea\xe8\x41\x95\x77\xa4\x76\x9f\xc7\xaf\xc9\xb8\x2b\x62\xbb\x13\x47\x0b\xb6\xf1\x3a\x7d\x56\x5f\x52\x4a\xf7\x4a\xb0\xf9\x8a\x8b\x5b\x00\xb8\x44\x73\xd6\x0f\x60\xd4\x66\xd4\x3f\x93\x71\x37\x16\x08\x2c\x08\xd4\x41\x80\x6f\x32\xbe\x1c\x4a\x1c\x3a\x17\xb1\xa6\xab\x8b\xc3\xf0\x82\x65\xe1\x44\xa7\xf2\x37\xdd\x44\x6e\xc5\xfd\xad\xb7\x43\xe3\x2c\x70\x6f\xd8\x5f\x88\x67\xf2\x01\x83\xd4\xd9\x4e\x03\x87\xad\x45\x73\x93\xeb\x0d\x97\xea\x0d\xd5\xe0\x84\xc1\xd2\xc8\x0d\x37\xb2\x3a\xd0\x99\x62\x5b\x81\x54\xc0\xe3\xf5\xd4\xdd\x87\x17\x53\x49\x7e\x40\x6c\x72\xb6\x08\xff\x99\xaf\xfd\x07\x1f\x8d\x54\x0e\x4d\xc1\x05\x36\x6d\x0a\x49\x6f\x35\xb8\x14\x43\xe4\xb7\xf3\xd3\x41\x96\x5c\xff\xba\x0c\xd3\x53\xb9\x78\x0b\x27\xea\x7a\x05\xf5\x82\xc3\xd0\x27\xbf\xc9\xe1\xa5\xa6\x3a\x4b\x61\x38\x10\x35\xde\x64\xf0\xd7\xec\x04\x0f\x9e\xca\x0b\x74\x7b\xad\xdf\xa3\xf0\x52\x26\xe7\x18\xec\x42\xf8\x5d\xfe\x7e\xfa\xb9\x15\x23\x3a\xc3\x9d\x17\xbc\x45\xdd\xcf\xb3\xc4\x4d\xc6\xee\x50\xe3\x60\x52\x82\x75\x66\x2b\x9c\xf7\x19\x47\x07\x7c\xfb\x6e\x9d\x91\xaa\x3c\xb5\x6c\x7f\x48\x05\x96\x08\x02\xbf\xf2\x6c\x6c\x74\x2e\x0b\x89\x36\x4c\xff\xe3\xcb\xc2\x4f\x62\xef\x72\x60\x80\xce\x26\xd7\xfd\x28\xd2\x90\x3a\x79\xf3\xd8\x2e\xdc\x73\x37\xdf\xbe\xa0\xca\x93\x35\x1e\xfc\x03\x21\xc4\x95\x0e\xcd\x35\xa7\xc4\xbd\x65\x0d\xe7\x6c\x87\x81\xae\xbb\xf9\x08\x73\x20\xa3\xb4\x77\x9a\xf1\x61\x62\xb6\xc7\x30\x2e\x8d\x5a\x1f\x52\x87\x54\x0a\xe7\xa6\x76\xbf\x68\x5f\x06\x29\xdc\xf3\xeb\x12\xd9\xe4\x70\xdd\x3d\x49\xd9\xa7\xbb\xf4\xa5\x46\xc8\x81\x66\x6c\xcd\xe5\x80\xa8\x51\xf7\xda\x59\x9f\x5e\x3b\x3e\xc2\x30\x59\x65\x01\xbb\x0c\xb4\x17\x0a\xf7\xcc\x7c\x46\xc9\x3a\x65\x49\x8c\xff\x2f\x12\xc6\x29\x1c\x6c\xcf\xe9\x59\x43\xd8\xfb\x65\x06\xeb\x0c\x76\x61\xec\xb4\xf1\x85\x13\xdf\x4c\x41\x7d\xf0\x6a\xba\xde\xe4\x30\x87\x63\x26\xff\x68\xa9\x92\xeb\x4d\x9e\x9d\xb6\x96\x74\x28\x98\x66\x8c\xa5\x69\xcf\x64\x44\x49\xb8\xe7\x23\x1d\xff\x07\x00\x00\xff\xff\x2f\xd5\x1f\xf3\xe3\x0c\x00\x00") +var _svcClientGrpcClientGotemplate = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\xcd\x6e\xdb\x38\x10\x3e\xdb\x80\xdf\x61\xd6\x08\x16\x52\xa0\xd0\xf7\x2e\x7c\xa9\xd3\x2d\xba\xd8\xa6\x46\x1a\x74\x0f\x45\x51\x30\xd4\x58\x26\x2c\x93\x2a\x49\x3b\x31\x04\xbd\xfb\x62\xf8\x63\x4b\xa9\xe3\xf6\x10\xc4\xe2\xfc\x7f\xdf\x0c\x87\xb3\x19\x2c\x74\x89\x50\xa1\x42\xc3\x1d\x96\xf0\x78\x00\x67\x76\xd6\x32\xb8\xfd\x04\x77\x9f\x1e\xe0\xdd\xed\x87\x07\x36\x19\xcf\x66\x70\x8f\x66\xa7\x94\x54\x55\xd0\x80\x27\x59\xd7\xa0\xf7\x68\x9e\x8c\x74\x08\x6e\x2d\x2d\xac\x64\x8d\x41\xfb\x0b\x1a\x2b\xb5\x7a\x03\x6d\xcb\xe2\xef\xae\xeb\x4b\xe0\x96\x3b\xec\x8b\xe9\x9b\x54\xbc\xd2\x92\x8b\x0d\xaf\x10\x2a\xd3\x08\x68\x8c\xde\xcb\x12\x2d\x70\xa8\xee\x97\x0b\x10\xb5\x44\xe5\x60\xa5\x0d\xb8\x35\x92\x8b\xcf\x68\xf6\x52\x20\xbb\xe3\x5b\xec\x3a\xb0\xf1\x73\x32\x6e\x7a\x7e\xc8\xb5\xdc\x36\xda\x38\xc8\x26\xe3\xd1\x54\x68\xe5\xf0\xd9\x4d\xe9\x77\xa5\x75\x55\x23\xab\x74\xcd\x55\xc5\xb4\xa9\x66\x64\x71\x41\x34\xdb\xa2\xe3\x25\x77\x3c\xe8\x48\xb7\xde\x3d\x32\xa1\xb7\xb3\x66\x53\xcd\xd0\x18\x6d\xec\x94\x02\x0e\x64\x95\xbe\xd9\x48\x37\xa3\x3f\x54\x65\xa3\xa5\xf2\xd1\xc9\x9f\x33\x5c\x59\x9f\xdb\x2b\x06\x47\x85\x94\xd9\x64\x3c\x9a\xcd\xe0\x81\x60\x8f\xe5\x53\xb4\xb6\x65\x1f\x7c\x8d\x4b\xee\xd6\x70\xd3\x75\x30\xb3\x7b\x5f\x48\xf3\x08\x24\x5d\xbe\x1d\xca\xa7\x93\x71\x1e\x41\xbf\xc3\x27\x30\xe8\x76\x46\x59\xe0\x2a\xa1\x08\x8f\x5c\x6c\x42\x6b\x0c\xf1\x17\x5a\x29\x14\x4e\x6a\xc5\xe0\x83\x03\x69\x89\x0d\xef\xc8\xa0\x6d\xb4\xb2\xf2\x51\xd6\xd2\x1d\x40\xaf\x3c\x4f\x82\xd7\x35\x1a\x70\x1a\x4a\xc9\xeb\x02\xb8\x2a\xa1\xe6\x0e\x0d\x88\x5a\x5b\x2c\x82\xd2\xc9\xe9\x64\xbc\xda\x29\x41\x59\x65\x74\x0a\xd7\x54\x38\x5b\xf8\xe0\x0b\xad\x54\x01\xba\x21\x45\x0b\x8c\xc5\xe3\x4f\xfe\x20\x87\xac\x79\x64\x3f\xb5\x05\x7d\xa1\x29\xc0\xb3\x93\x43\x3b\x19\x8f\xf6\xdc\x80\x10\xb1\xa0\x85\x56\x2b\x59\x79\x60\xa9\xb5\xbe\x17\xb0\x82\x37\x73\x30\x5c\x55\x78\x0c\x45\x56\x23\x34\x86\x24\xab\xec\x4f\x21\x72\x3a\x90\x2b\xf2\x0a\x7f\xcc\x41\xc9\x3a\xe8\x8c\x02\x92\x74\x10\x43\x5a\xf6\x9f\xe1\x4d\x86\xc6\x14\x30\x15\x5c\x29\xed\x80\x37\x4d\x7d\x88\xce\xa7\xde\x55\x37\x19\x8f\xfc\x14\x8c\x44\xaf\x24\x4b\xf1\xbe\x7e\x1b\x74\xca\xa0\x66\x1f\xf3\x9c\xf8\x2d\xae\xb4\xc1\xcc\xa7\x14\x3b\xfe\x0b\xaf\x77\x68\x1f\xf4\xfb\xfb\xe5\xe2\x63\x6c\xe3\x4c\x08\xb6\x46\x5e\xa2\xb1\x79\x5e\x84\x1c\x46\x6d\x7b\x03\x4f\xd2\xad\xe1\xca\x21\x25\xc0\x68\x3e\x47\xbd\xe3\x66\x53\x11\xb6\x24\xbb\x72\xc8\xe2\xd4\x06\xb8\x7d\x44\x52\x0d\x00\x5e\xc9\xa4\x95\x58\xf9\x88\x6e\xad\x4b\x1b\x35\x3d\x17\x6d\xfb\xa0\xff\xd5\x4f\x68\xe0\x4a\x46\xd6\xde\xc5\x41\x81\x34\x31\x2c\x9d\x04\xb3\x00\x36\x45\x7a\xdd\x74\x0e\x43\x64\xee\xf0\x29\x80\x93\x45\x63\x42\x46\x15\xe9\x63\xda\xb6\xa9\xb2\xae\x63\x6d\xdb\x4f\x3a\x1c\x4e\x07\xba\xf2\xa7\xd3\x77\x4a\xe8\x12\x09\xdf\x9e\xf8\x1e\x7f\xec\xd0\xba\xa3\xd2\x2d\x9e\x55\xf2\xa3\x83\x47\x2d\xdf\xc9\xef\xb5\x87\xf9\x4a\xb2\x24\x7f\x38\x34\x29\x99\xb6\x3b\x2a\x0f\x5a\x86\x31\x96\x04\xf9\x11\xb4\x2c\x0f\x47\x89\x1e\x54\x65\x22\x35\xfd\x3c\xfe\x9a\x8c\x47\x09\x74\xdf\x7f\x76\x2f\x08\xba\xe4\xca\x7a\x5f\x6d\xdb\xe7\xf7\x25\xb9\x74\xc3\xf8\x89\x49\x36\xac\x57\x6b\x8f\x9f\x0b\xec\xf5\x33\x4a\x43\x75\x74\x57\xd0\x7c\x4d\xc6\x69\x6d\x10\x98\x10\xa8\x85\x00\xef\x64\x7c\x39\xc1\xb8\x94\x2e\x72\x41\x57\x1b\x87\xe1\x05\xcc\x82\x45\x52\xf9\x9b\x6e\x2a\xb7\xe6\xfe\x56\xdc\xa3\x71\x16\xb8\x77\xec\x2f\xcc\x33\xd5\x81\x41\x9a\x7c\xa7\x81\xc3\xce\xa2\xb9\x29\xf5\x96\x4b\xf5\x8a\x6a\x08\xc2\x60\x69\xe4\x96\x1b\x59\x1f\xc8\x66\xb5\xab\x41\x2a\xe0\xf1\xfa\x4a\xf7\xe5\xc5\x52\xb2\xef\x10\x2f\x01\xb6\x08\xff\x0b\x3f\x1b\xf7\x3e\x1b\xa9\x1c\x9a\x15\x17\xd8\x76\x39\x64\xbd\xaf\xc1\xa5\x19\x32\x7f\x33\x3f\x19\xb2\xec\xfa\xd7\x6d\x9a\x9f\xe8\xf3\x1e\x4e\xd4\xf5\x1a\xee\x05\x87\x61\x8e\x7e\x93\xc3\x4b\x43\x77\x96\xc2\x60\x10\x35\x5e\x65\xf0\xd7\xec\x84\x08\x9e\xca\x0b\x74\x7b\xad\xdf\xa3\xf0\x52\x25\xe7\x18\x4c\x29\xfc\x2e\x7f\x3f\xfc\x5e\x8b\x19\x9d\xe1\xce\x0b\x5e\xa3\xee\xc7\x59\xe2\x26\x63\x77\x68\x70\xb0\x49\xc1\x3a\xb3\x13\xce\xc7\x8c\xab\x05\xbe\x7e\xb3\xce\x48\x55\x9d\x46\xb6\xbf\xc4\x02\x4b\x04\x81\xff\xf2\x6c\x6c\x75\x29\x57\x12\x6d\x78\x1d\x1c\x5f\x1e\x7e\x53\xfb\x90\x03\x07\x64\x9b\x5d\xf7\xb3\xc8\x43\xe9\x14\xcd\x63\xbb\x70\xcf\x69\xff\x7d\x46\x55\x66\x1b\x3c\xf8\x07\x44\xc8\x2b\x1f\xba\x6b\x4f\x85\x7b\xcf\x1a\xce\xf9\x0e\x0b\x5f\xa7\xfd\x09\x73\x20\xa7\x74\x76\x7a\x03\x84\x8d\xda\x1d\xd3\xb8\xb4\x8a\x7d\x4a\x09\xa9\x1c\xce\x6d\xf5\x7e\xd3\xbe\x4c\x52\xb8\xe7\x9f\x5b\x64\x5b\xc2\x75\x7a\xb2\xb2\x8f\xb7\xf9\x4b\x8d\x50\x03\xed\xe0\x86\xcb\x01\x51\xa3\xf4\x1a\xda\x9c\x5e\x43\x3e\xc3\xb0\x79\xe5\x0a\xf6\x05\x68\x2f\x14\xee\x99\xf9\x8a\xb2\x4d\xce\xb2\x98\xff\x5f\x24\x8c\x5b\x3a\xf8\x9e\xd3\xb3\x87\xb0\xf7\x9f\x05\x6c\x0a\xd8\x87\xb5\xd4\xc5\x17\x50\x7c\x53\x05\xf5\xc1\xab\xea\x7a\x5b\xc2\x1c\x8e\x95\xfc\xa3\xa5\xca\xae\xb7\x65\x71\x3a\x5a\x92\x51\x70\xcd\x18\xcb\xf3\x9e\xcb\x88\x92\x70\xcf\x47\x3a\xfe\x0f\x00\x00\xff\xff\xeb\xd5\x89\x8b\x03\x0d\x00\x00") func svcClientGrpcClientGotemplateBytes() ([]byte, error) { return bindataRead( @@ -173,8 +173,8 @@ func svcClientGrpcClientGotemplate() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "svc/client/grpc/client.gotemplate", size: 3299, mode: os.FileMode(0644), modTime: time.Unix(1464111000, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb0, 0xe5, 0xb5, 0xba, 0x75, 0x9a, 0xbe, 0xef, 0x38, 0x68, 0xa3, 0xdd, 0x67, 0xb3, 0x47, 0x9, 0xe0, 0x86, 0x3a, 0x1, 0xe0, 0xef, 0x7e, 0xc8, 0xca, 0x3a, 0xa2, 0x55, 0x74, 0x6f, 0x9b, 0x51}} + info := bindataFileInfo{name: "svc/client/grpc/client.gotemplate", size: 3331, mode: os.FileMode(0644), modTime: time.Unix(1464111000, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9, 0xe8, 0xd6, 0xe, 0x9a, 0x61, 0xd1, 0x60, 0x64, 0x8f, 0x1, 0x90, 0x10, 0x77, 0x50, 0xd4, 0x82, 0x57, 0xf0, 0xed, 0x7, 0xe7, 0x27, 0x26, 0xf1, 0xd9, 0xaa, 0x25, 0x59, 0x7, 0xf5, 0x8a}} return a, nil } @@ -198,7 +198,7 @@ func svcClientHttpClientGotemplate() (*asset, error) { return a, nil } -var _svcEndpointsGotemplate = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x59\xdf\x6f\xe3\xb8\x11\x7e\x76\x80\xfc\x0f\x73\x46\x8a\xb5\x0f\x5a\xf9\xfa\xba\x0b\x3f\xb4\xbb\xb9\xdb\x00\xdd\x1f\xb8\x6c\x7b\x0f\x41\x70\xa0\xa5\x91\x4d\x84\x22\x75\x24\x65\xc7\x15\xfc\xbf\x17\xc3\x1f\xb2\x64\xcb\x76\xb6\x87\x02\xc5\xe1\x1e\x16\x49\x44\x72\x38\xf3\xcd\x37\x1f\x87\xdc\xd9\x0c\xde\xa9\x1c\x61\x89\x12\x35\xb3\x98\xc3\x62\x0b\x56\xd7\xc6\xa4\xf0\xfe\x33\x7c\xfa\xfc\x15\x6e\xdf\xdf\x7d\x4d\xaf\xaf\x66\x33\xf8\x19\x75\x2d\x25\x97\x4b\x3f\x03\x36\x5c\x08\x50\x6b\xd4\x1b\xcd\x2d\x82\x5d\x71\x03\x05\x17\xe8\x67\xff\x0b\xb5\xe1\x4a\xbe\x81\xa6\x49\xc3\xef\xbb\x5d\x77\x04\xde\x33\x8b\xdd\x61\xfa\x9b\xa6\x5c\x5f\x55\x2c\x7b\x62\x4b\x04\xb3\xce\xe8\xcf\xd9\x0c\xbe\x46\xe3\x90\x29\x69\x19\x97\x06\x4a\xb4\x2b\x95\x1b\xb0\x0a\x4a\xf6\x84\xc0\x65\xce\xd7\x3c\xaf\x99\x00\x94\x79\xa5\xb8\xb4\x06\x0a\xad\x4a\x30\xa8\xd7\x3c\x43\x93\x38\x53\x1a\x7f\xab\xd1\x58\x60\x32\x07\x8d\xa6\x52\xd2\x20\xd8\x6d\x85\xce\x14\xcd\xa5\x58\x94\xc1\xbd\x99\x04\x98\x81\x0d\x0a\x41\x3f\x51\x66\x2a\x47\x6d\xc8\x80\x33\x98\x63\xf8\x50\x28\x1d\x56\x3a\x73\x89\xfb\xc0\x08\xa4\x02\x54\xad\xc1\xd4\x55\xa5\x34\xa1\x6c\x35\x93\x86\x7e\xa7\xfd\x38\x13\xfc\xdf\xcc\x72\x25\x9d\xb9\x42\xe9\x92\x59\x93\x52\xe4\xbc\x74\x93\x26\xd7\x57\xa3\x71\x51\xda\x31\xfd\x24\x00\xf0\x99\x7e\xa7\xbf\x96\xdc\xae\xea\x45\x9a\xa9\x72\xb6\x54\xaf\x9f\xb8\x9d\xd1\xbf\xe8\xb9\x9f\x54\x2d\x60\xdc\x34\xe9\x97\xbf\xdf\x39\x73\x5f\x98\x5d\xc1\xeb\xdd\x6e\x7c\x7d\x35\x0d\xf0\xde\xb6\x80\x65\x4a\x08\xcc\xac\x89\x7e\xdb\x55\x07\x07\xb0\x2b\x66\x21\x53\x65\x45\x41\x32\x09\x2c\xcf\x23\xba\x29\xdc\xd9\x57\xc6\x59\x2b\x91\x49\x4b\x60\x2e\x10\x6a\x83\x39\xa1\xc6\x60\x85\xa2\x42\x0d\xc6\xea\x3a\xb3\x09\x0d\x87\xbd\x86\xb7\xe2\xd2\x2a\x60\xce\x9e\xe1\x72\x29\x10\x2a\xa6\x59\x89\x16\xb5\x23\x98\x1b\xb9\x93\xc0\x7c\xca\x74\x02\xdc\xbe\x32\xb4\x5f\x51\x0b\x87\x7c\x51\xcb\x8c\x50\x0d\x6e\x4b\x24\xe0\x15\xa8\xca\x51\x1d\x14\xad\xad\x50\xbf\x8e\x7b\x3a\x8b\x0b\x66\xb8\x49\xe1\x47\xa5\x01\x9f\x59\x59\x09\x4c\x60\xab\x6a\x28\xf9\x72\x65\xa1\x62\x86\xf2\xde\xc1\x8b\x9c\x6c\x77\xf2\x1b\x55\x5a\xe5\x75\x86\x1e\x0b\x26\x61\x65\x6d\x95\x7e\x60\x32\x17\xe4\xe5\x86\xdb\x15\x20\xcb\x56\x81\xc0\x30\x89\xfb\x4f\x61\xc3\x35\xe6\x50\x57\xde\xaa\xa9\x30\xe3\x05\xcf\xa0\x62\x76\x95\xc2\xe4\xce\x7b\xc8\x0d\xed\xb0\x60\x0b\xb1\x05\x06\x25\x37\xd6\xb3\x1f\x72\x34\x7c\x29\x69\x2d\x97\x6b\xf5\x84\x0e\xd0\x7b\x9f\x9d\xb6\x5a\x9c\x93\x78\x90\x74\x9f\x13\xb2\x11\xd1\x4c\xa7\x7d\x8c\x33\xc1\x51\xda\x3e\xc6\x9d\x0c\xee\x6b\x4f\x6c\xa9\x42\xbd\x41\xcc\xcf\xe6\x93\x8a\xc4\x23\xc6\x09\xe7\x12\x3d\xc3\xf6\x3e\x73\x69\x51\x17\x8c\xb8\x35\x9c\x0f\x67\xad\xdd\x6e\x58\x01\x6a\xe3\x15\x2b\x14\xdc\xcc\x65\xe3\x13\x6e\xde\x85\x88\x32\x55\x2e\xb8\x74\x60\x95\xc1\xc9\x4e\x7e\x93\x20\x13\xb6\xd6\x12\xb8\x23\x35\x79\x98\x31\x21\x50\x7b\x5e\x07\x6f\xd3\xeb\x2b\x17\xd0\x11\xaa\xcd\xf5\xd5\x88\x36\xbd\x77\xc0\x7e\xae\x3c\x25\x01\xa0\x64\xd5\x83\xb1\x9a\xcb\xe5\xe3\xc3\x23\xcd\x68\x9d\x4c\xbb\x73\xc3\xf2\x9f\xbd\x6c\xbd\x8f\x62\xd3\x5d\xde\x5f\xec\xa7\x84\xf9\x3f\xd6\x32\x6b\x2d\x78\xb1\xbb\x8d\x02\x76\xd2\x82\x9f\x11\xe7\x7b\x13\x4d\xa3\x99\x5c\x22\xdc\x70\x78\x33\x87\x34\x46\xfd\xd1\xf3\x8a\x74\x7b\xd4\x34\x37\x3c\xfd\xc4\x4a\xdc\xed\x22\x0a\x14\x67\xcc\x45\x7a\xdb\x16\x5a\xd3\xbc\xa6\xcf\xb4\x6a\x77\x28\x41\x2f\xda\x8a\x2a\x0e\x26\x1d\xb4\xa7\xd0\xd9\x7d\x92\xd9\x67\x08\x3a\x99\xbe\xf3\x3f\x13\xa2\xf7\xf7\xd5\x22\x6d\x9a\x9f\x14\x4d\x83\x1b\x9e\x06\x90\xbe\x6e\x2b\x0c\x4b\xa7\x30\x39\x9e\xe4\x71\xe8\xcc\x4a\x00\xb5\x56\x7a\xea\x92\x3b\x8a\xa7\x88\xfb\x4a\x2e\x63\x3a\x00\x05\x39\x45\x4e\x4c\x69\x09\x2f\xdc\xdc\xef\xe6\x20\xb9\xf0\x56\x46\x81\x65\x92\x0b\x67\x88\xbe\xed\xbc\x79\xf7\x3d\xee\x92\xbe\xc4\xc1\x69\x42\x76\xae\xaf\xc8\x42\xd3\x04\xa8\x1d\xce\x1f\x49\x2d\x7a\x60\x3b\x45\xba\xb1\xe8\xc0\x0e\x89\xec\x26\xe0\xc6\xe2\x60\x0e\x7c\x12\xc8\xde\x50\xb4\x06\x9c\x97\xdd\xc5\x7e\x86\xe7\xf6\xf4\x98\x16\x7d\x18\xc8\xf8\x70\x1e\xe3\x01\xde\xca\x43\x43\x59\x6b\x8f\xf2\xce\x67\x9f\x90\x6e\xaa\xc8\xfc\x6f\x14\x54\x30\x32\x04\xe6\x11\x25\xfc\xc2\x75\x9b\x5e\x93\x1e\x70\xcd\xf9\x14\xa6\x0d\x65\x76\x30\xb7\x21\xbb\xed\xd8\x3a\xa6\x2c\x0c\xf8\x44\x84\xd4\xf5\x73\xf8\x8b\x66\xd5\xdf\x84\xb8\x7d\xce\xb0\xb2\xb0\xd1\xac\x32\xfe\x48\x69\xa1\x2c\x38\x8a\x9c\x0e\xd5\x20\x42\x7b\x55\x72\xd9\xf6\x3a\x3c\xd0\x30\xa4\x1f\x79\x9e\x0b\xdc\x30\x1d\xda\xb8\x7f\x9a\xd8\xd9\x51\x2f\x53\x55\x62\x4b\x72\x4a\xc7\x84\x25\xf3\x65\x3b\xdd\x1d\x85\xb8\x46\xbd\x6d\x33\x4b\x15\x47\x6a\x69\x5a\x85\x9c\xcd\xc0\x8b\x1a\x1d\x14\x49\x47\xa5\x33\x26\xa9\x5b\xa0\xf3\x15\x73\x5a\xb7\xd8\x82\xa4\x8c\xf8\x2e\x02\x9f\x33\x51\xe7\x98\xfb\x7e\x6e\x81\xe4\x03\x85\x5d\x61\x9e\x1e\x23\x32\xd9\x7b\x95\xc0\xf8\xde\x32\x5b\x9b\x71\x02\xe3\x2f\x5c\x2e\xc7\xd3\xeb\xab\x28\x1e\xdf\x77\xd4\xe3\x94\x01\x18\x40\x26\xd9\xfb\x93\xa6\xa9\x57\x50\xcf\x2f\x2e\xc3\xf7\x37\xf3\xae\xba\xfa\x24\x34\x3b\xc7\x06\xd2\xbe\x8b\xfa\x36\x1a\x8d\x3b\x1c\x1b\xbf\x81\x66\x97\xc4\xc5\x81\x09\x23\xc7\x86\x11\xe5\xe5\x57\xf2\xc8\xb1\xda\xd9\x6d\xbd\x6b\x82\xd4\xfc\x9a\x80\x7a\xa2\xf1\xe8\xdf\x03\x3e\x3f\xbe\x85\xef\xd4\x53\x20\x68\xc5\x24\xcf\x26\x45\x69\xd3\xfb\x4a\x73\x69\x8b\xc9\xf8\x36\x1a\x69\xb3\xf9\xea\x2f\xe6\x15\xe4\x0a\x0d\x48\x65\x01\x9f\xb9\xb1\x6f\xc1\x20\x76\x49\xd0\x12\xc9\xa4\x4b\x35\x26\xb7\xa6\xd3\x56\xc8\x72\x14\x68\x71\x12\x9d\x70\xa3\xbd\x38\xb8\xcc\xf6\x51\xb4\x58\x7e\x0b\x6a\xbc\x70\x46\xe6\x73\xe8\xe1\x17\xeb\x70\x50\x98\x61\xde\x89\x60\x32\x38\x65\xba\x2f\xcb\x83\x0c\xc4\x92\xfc\x07\x5b\xa0\xc0\x7c\x4f\x12\x7f\x3d\x5a\xa2\x8d\xa4\xee\xb6\xb7\x9e\xdb\x9b\x15\xca\x76\x54\x75\x79\x1c\xac\x79\x36\x26\xbe\x00\x43\x89\xd4\x7e\x36\xf8\x4b\x17\xf3\x57\x37\x9e\x51\x83\xa7\x79\x16\x1a\xf0\x8e\x17\x2b\x9e\xad\xdc\x5a\x83\x72\xc8\x89\xd0\xd1\x84\xe5\xb1\xa3\x53\x3a\xf6\x33\xc7\x81\x39\x65\xf6\xcc\x4e\x8e\x55\x7c\x40\xd8\xfb\xaa\xd5\x8b\xed\xbf\x17\xaf\x23\xbf\x92\x10\xab\xc3\x5d\x63\x86\x7c\xed\x5b\x60\x17\xe6\xc1\xfd\x22\x85\x7b\xc4\xbd\x9d\x8e\x19\x37\x12\x7b\xf3\x56\x15\xc8\x55\x62\x68\x8e\x96\x71\xe1\xda\xe8\x58\x65\xfe\xd2\x16\x6e\x00\x4c\x70\xbb\x4d\xcf\x4a\x4c\x2f\xfe\xae\xd2\x7c\x33\xae\x7f\xea\xd0\x1f\x58\x87\x7a\xeb\x92\xe1\x96\xf2\xb2\x2c\x05\xce\xfd\xc2\xed\xea\x83\xb5\x95\x3f\x7c\xcf\x94\x1e\x4a\xab\xb7\x54\x2c\x05\x17\x98\xc3\x87\xa3\x7b\xcb\x85\xaa\x3c\x7d\x8d\x79\x51\x3b\xe1\x2f\x9f\xa0\xc2\x66\xff\x07\x1d\xc5\x10\x72\x13\xd3\x89\xeb\x5b\x3b\x8c\x8b\x06\xcf\x60\xf8\x67\xc1\xff\x0f\x0a\x9e\x1a\xf6\xf4\xf8\x82\x3e\xef\x34\xf0\x83\xe3\xee\xd5\x71\xf2\xc2\x4b\x7c\xd8\xee\x92\xba\xac\xd9\x9e\xfc\x17\xde\x04\xc8\x6f\x15\xe1\x1d\x70\xf0\x81\xcb\xec\xf1\x2d\xb4\x48\xab\xd6\x6f\x22\xb9\xcc\x27\x2a\x01\x73\xe0\xe1\x68\x07\x28\x0c\x1e\xad\x70\x91\x9e\xf3\x27\x81\xbf\x4e\xbb\x6b\x1e\x7e\x78\x84\x79\xcf\x7c\x9b\x8b\x53\xae\xc2\x3c\x46\xde\x57\xb0\x9f\xd0\x1e\xab\x90\xbf\x32\xf9\x47\xca\xd3\x5e\x01\x33\x46\x65\xdc\xbd\x6b\x3b\x8d\x22\xe9\x58\xf2\x35\xca\xfd\x59\xba\xaf\xd5\x4e\xa9\x0e\xed\xd9\x3e\xd3\x41\xac\xbb\x73\x80\xf8\xa2\x2c\x62\x48\xe7\xf2\x14\xed\x76\x92\x15\x6e\x84\x3d\x3c\xe2\xc7\x17\xe4\xe2\x87\xe9\x1e\xbe\x7b\x1f\x4a\xff\xf5\x88\x80\xe1\x4b\xe9\x5e\x65\xcf\x3f\x1d\x81\x7f\x0f\x3b\x0f\xd7\xe0\x1e\x87\x78\x25\xf1\x9d\xfc\xd2\x96\x5e\xd0\x3c\x52\x07\x8f\x5e\x7b\xac\x60\x1e\xcd\x1d\x31\xe5\x20\xd4\x48\x15\xca\xfd\xa5\x60\x7f\x27\x5f\x2e\x01\x50\x30\x21\x16\x2c\x7b\xba\x8c\xc0\x25\x47\x03\xbb\x02\x04\x7d\x76\x9d\xc4\xec\x88\x5f\x2d\x82\x5d\x7e\x45\x27\x07\x28\xd4\x7b\x3e\x3c\xc9\xa1\xe3\xc7\xc3\x6f\x23\x51\x6f\x97\x63\x10\xc3\x7f\xbf\x5c\xdc\xb4\x4f\xa3\xfe\xcb\x67\x8f\x47\xc1\xe0\x00\x8f\xfa\xf1\x9e\x26\xd2\x40\xc4\xbf\x9b\x49\x17\x50\x38\x41\xa5\x21\x18\x2e\xfa\x1a\xc8\x14\x70\x38\x24\xd3\x29\xe4\x8e\xd8\xd4\xe2\x78\x92\x4d\xff\x09\x00\x00\xff\xff\x2a\x89\x56\xf9\x6e\x1c\x00\x00") +var _svcEndpointsGotemplate = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x59\x5d\x6f\xe3\xb8\x15\x7d\xce\x00\xf9\x0f\x77\x8d\x14\x63\x2f\x34\xf2\xf6\x35\x03\x3f\xb4\x33\xd9\x9d\x00\x9d\x0f\x6c\xa6\xdd\x87\x20\x58\xd0\xd2\x95\x4d\x44\x22\xb5\x24\x65\xc7\x15\xf2\xdf\x8b\xcb\x0f\x99\xb2\x64\x3b\xd3\x05\x8a\x62\xb1\x0f\x83\x64\x24\xf2\xf0\xde\x73\xce\xbd\x24\x95\xf9\x1c\xde\xc9\x1c\x61\x85\x02\x15\x33\x98\xc3\x72\x07\x46\x35\x5a\xa7\xf0\xfe\x33\x7c\xfa\xfc\x15\x6e\xde\xdf\x7e\x4d\x2f\x5f\xcd\xe7\xf0\x33\xaa\x46\x08\x2e\x56\x6e\x04\x6c\x79\x59\x82\xdc\xa0\xda\x2a\x6e\x10\xcc\x9a\x6b\x28\x78\x89\x6e\xf4\xbf\x50\x69\x2e\xc5\x35\xb4\x6d\xea\x7f\x7f\x7e\x8e\xdf\xc0\x7b\x66\x30\x7e\x4d\xff\xa7\x21\x97\xaf\x6a\x96\x3d\xb2\x15\x82\xde\x64\xf4\xdf\xf9\x1c\xbe\x06\x70\xc8\xa4\x30\x8c\x0b\x0d\x15\x9a\xb5\xcc\x35\x18\x09\x15\x7b\x44\xe0\x22\xe7\x1b\x9e\x37\xac\x04\x14\x79\x2d\xb9\x30\x1a\x0a\x25\x2b\xd0\xa8\x36\x3c\x43\x9d\x58\x28\x85\xbf\x35\xa8\x0d\x30\x91\x83\x42\x5d\x4b\xa1\x11\xcc\xae\x46\x0b\x45\x63\x29\x17\xa9\x71\x0f\x93\x00\xd3\xb0\xc5\xb2\xa4\x9f\x28\x32\x99\xa3\xd2\x04\x60\x01\x73\xf4\x0f\x0a\xa9\xfc\x4c\x0b\x97\xd8\x07\x8c\x48\x2a\x40\x36\x0a\x74\x53\xd7\x52\x11\xcb\x46\x31\xa1\xe9\x77\x5a\x8f\xb3\x92\xff\x9b\x19\x2e\x85\x85\x2b\xa4\xaa\x98\xd1\x29\x65\xce\x2b\x3b\x68\x7a\xf9\xea\x62\x52\x54\x66\x42\x3f\x89\x00\x7c\xb2\xbf\xaf\x8d\xa9\xf7\x50\x93\x15\x37\xeb\x66\x99\x66\xb2\x9a\xaf\xe4\x9b\x47\x6e\xe6\xf4\xaf\x1b\x30\xa7\xe1\x13\x82\xbd\x38\x32\x34\x24\xec\x06\xd5\x4b\x98\xb4\x6d\xfa\xe5\xef\xb7\x36\x8a\x2f\xcc\xac\xe1\xcd\xf3\xf3\xe4\xf2\xd5\xcc\xab\x72\xd3\xf1\x9c\xc9\xb2\xc4\xcc\xe8\x90\xae\x59\x47\xf4\x81\x59\x33\x03\x99\xac\x6a\xe2\x86\x09\x60\x79\x1e\x44\x49\xe1\xd6\xbc\xd6\x16\xad\x42\x26\x0c\x69\xb0\x44\x68\x34\xe6\x44\x36\x83\x35\x96\x35\x2a\xd0\x46\x35\x99\x49\xe8\xb5\x5f\x6b\x7c\x29\x2e\x8c\x04\x66\xf1\x34\x17\xab\x12\xa1\x66\x8a\x55\x68\x50\x59\x5f\xda\x37\xb7\x02\x98\x53\x5a\x25\xc0\xcd\x6b\x4d\xeb\x15\x4d\x69\x05\x2b\x1a\x91\x91\x18\x3e\x6c\x81\xa4\x97\x04\x59\xdb\x0a\x01\x49\x73\x6b\x54\x6f\xc2\x9a\x16\x71\xc9\x34\xd7\x29\xfc\x28\x15\xe0\x13\xab\xea\x12\x13\xd8\xc9\x06\x2a\xbe\x5a\x1b\xa8\x99\x26\xbb\x44\x7c\x51\x90\xdd\x4a\x6e\xa1\x5a\xc9\xbc\xc9\xd0\x71\xc1\x04\x90\x5a\xe9\x07\x26\xf2\x92\xa2\xdc\x72\xb3\x06\x64\xd9\xda\xfb\x1e\xa6\x61\xfd\x19\x6c\xb9\xc2\x1c\x9a\xda\xa1\xea\x1a\x33\x5e\xf0\x0c\x6a\x66\xd6\x29\x4c\x6f\x5d\x84\x5c\xd3\x0a\x4b\xb6\x2c\x77\xc0\xa0\xe2\xda\xb8\xa2\x81\x1c\x35\x5f\x09\x9a\xcb\xc5\x46\x3e\xa2\x25\xf4\xce\xa9\xd3\x15\x99\x0d\x12\x0f\x44\x77\x9a\x10\x46\x60\x33\x9d\xf5\x39\xce\x4a\x8e\xc2\xf4\x39\x8e\x14\xdc\x97\x6c\xb9\xa3\xc2\x76\x80\x98\x9f\xd4\x93\x6a\xcb\x31\xc6\x89\xe7\x0a\x9d\xc3\xf6\x31\x73\x61\x50\x15\x8c\xbc\x35\xae\x87\x45\xeb\x96\x1b\x6f\x1c\x8d\x76\x8d\x2e\xae\x9d\xf4\x13\x6e\xdf\xf9\x8c\x32\x59\x2d\xb9\xb0\x64\x55\x3e\xc8\x48\xdf\xc4\x77\x17\xd3\x28\x01\xdc\x9a\x9a\x22\xcc\x58\x59\xa2\x72\xbe\xf6\xd1\xa6\x97\xaf\x6c\x42\x03\x56\x5b\x5f\xdf\x77\x96\xd8\xcf\xb5\xb3\x24\x00\x54\xac\xbe\xd7\x46\x71\xb1\x7a\xb8\x7f\xe8\x75\x80\x34\x1e\xeb\xa7\xff\xec\xba\xdd\xfb\xd0\xa3\xe2\xe9\xfd\xc9\x6e\x88\x1f\xff\x63\x23\xb2\x0e\xc1\xf5\xc8\x9b\xd0\xf7\x8e\x22\xb8\x11\x61\xbc\x83\x68\x5b\xc5\xc4\x0a\xe1\x8a\xc3\xf5\x02\xd2\x90\xf5\x47\xe7\x2b\x6a\xf7\x17\x6d\x7b\xc5\xd3\x4f\xac\xc2\xe7\xe7\xc0\x02\xe5\x19\xb4\x48\x6f\xba\x42\x6b\xdb\x37\xf4\x98\x66\xd9\x7d\x82\x0a\x08\x3e\xe1\xb6\x23\x6f\x3a\x8b\x88\x24\x06\xbd\x04\xdd\x43\x7a\x36\xa4\xf5\xda\xf1\xfa\x88\xd3\x17\x92\x3b\x4b\x02\xce\x01\xbf\xd7\x43\x9c\x33\x2c\xc7\x50\x7d\xa2\xaf\xcf\x40\x0d\xe9\xb6\x58\x81\x9c\xb8\x54\x5f\xa4\x83\x65\x73\x1a\x59\x71\x06\x91\x34\xd3\xcc\x3c\x81\xdf\x7b\xd2\x77\xee\x67\x42\xb5\xff\x7d\xbd\x4c\xdb\xf6\x27\x49\xc3\xe0\x8a\xa7\x3e\xb7\xaf\xbb\x1a\xfd\xd4\x19\x4c\x87\x83\x5c\xd4\xd1\xa8\x04\x50\x29\xa9\x66\x56\xb7\x8b\xb0\x33\xdb\xa7\x14\x32\xa6\x23\x3e\xa1\xa0\x28\x88\x19\x4d\xe1\x85\x1d\xfb\xdd\x02\x04\x2f\x1d\x4a\xd0\x5f\xf0\xd2\x02\xd1\xb3\x67\x07\x6f\x9f\x87\x55\xd2\x97\x04\x38\x4b\x08\xc7\x31\xdc\xb6\xde\x87\x96\xe7\x8f\xd4\x4a\x7b\x64\xdb\x76\x7d\x65\xd0\x92\xed\x5d\x1e\x0b\x70\x65\x70\x54\x03\x27\x02\xe1\x8d\x65\xab\xc1\x46\x19\x4f\x76\x23\x9c\x37\x67\xc3\x9a\xe9\xd3\x40\xe0\xe3\x3a\x86\x43\x51\xd7\x3b\x5b\x52\xad\x3b\x1e\x45\x8f\x9d\x20\xb1\x54\x04\xff\x1b\x25\xe5\x41\xc6\xc8\x1c\x58\xc2\x4d\xdc\x74\xf2\xea\xf4\xc0\x6b\x36\x26\x3f\x6c\x4c\xd9\x51\x6d\xbd\xba\xdd\xbb\x4d\x90\xcc\xbf\x70\x42\x78\xe9\xfa\x1a\xfe\xa2\x58\xfd\xb7\xb2\xbc\x79\xca\xb0\x36\xb0\x55\xac\xd6\x6e\xbf\xed\xa8\x2c\x38\x96\x39\x9d\x38\x7c\x87\xde\x77\x1a\xab\xb6\xdb\xa4\x46\x4e\x53\xe9\x47\x9e\xe7\x25\x6e\x99\xf2\x47\xe3\x7f\xea\x70\x5a\xa6\xf3\x61\x5d\x97\x3b\xda\x6b\x68\x0f\x35\x04\x5f\x75\xc3\xed\x39\x01\x37\xa8\x76\x9d\xb2\x54\x71\xb4\x95\xe8\x6e\xfb\x98\xcf\xc1\x35\x25\xda\x45\x93\x68\x0b\xcb\x98\xa0\xa3\x14\x1d\x3e\x30\xa7\x79\xcb\x1d\x08\x52\xc4\x1d\xb1\xf0\x29\x2b\x9b\x1c\x73\x77\x46\x5e\x22\xc5\x40\x69\xd7\x98\xa7\x43\x46\xa6\xfb\xa8\x12\x98\xdc\x19\x66\x1a\x3d\x49\x60\xf2\x85\x8b\xd5\x64\xe6\x5b\xf1\x14\xe1\xfb\xa8\x7b\x1c\x03\x80\x11\x66\x92\x7d\x3c\x69\x9a\xba\x7e\xe7\xfc\xc5\x85\x7f\x7e\xbd\x88\xb7\x1e\x27\x42\xfb\x6c\xdd\x40\x1b\xc3\xd9\xfe\x76\x71\x31\x89\x3c\x36\xb9\x86\xf6\x39\x09\x93\xbd\x13\x2e\xac\x1b\x2e\x48\x97\x5f\x29\x22\xeb\x6a\x8b\xdb\x45\xd7\xfa\x56\xf3\x6b\x02\xf2\x91\xde\x87\xf8\xee\xf1\xe9\xe1\x2d\x7c\x27\x1f\xbd\x41\x6b\x26\x78\x36\x2d\x2a\x93\xde\xd5\x8a\x0b\x53\x4c\x27\x37\x01\xa4\x53\xf3\xf5\x5f\xf4\x6b\xc8\x25\x6a\x10\xd2\x00\x3e\x71\x6d\xde\x82\x46\x8c\x4d\xd0\x19\x49\xa7\x2b\x39\xa1\xb0\x66\xb3\xae\x91\xe5\x58\xa2\xc1\x69\x08\xc2\xbe\xed\xe5\xc1\x45\xb6\xcf\xa2\xe3\xf2\x5b\x58\xe3\x85\x05\x59\x2c\xa0\xc7\x5f\xa8\xc3\xd1\xc6\x0c\x8b\x28\x83\xe9\xe8\x90\xd9\xbe\x2c\x0f\x14\x08\x25\xf9\x0f\xb6\xc4\x12\xf3\xbd\x49\xdc\x95\x73\x85\x26\x98\x3a\x3e\xfb\x3b\x6f\x6f\xd7\x28\xba\xb7\x32\xf6\xb1\x47\x73\x6e\x4c\x5c\x01\xfa\x12\x69\xdc\x68\x70\x17\x59\xe6\xae\xc3\x3c\xa3\xd3\xaf\xe2\x99\xbf\x9d\x44\x51\xac\x79\xb6\xb6\x73\x35\x8a\xb1\x20\xfc\x71\xcf\x4f\x0f\xc7\x5d\xa9\xc2\x61\x6f\x98\x98\xed\xcc\xce\xd9\xc9\xb0\x8b\x8f\x34\xf6\x7e\xd7\xea\xe5\xf6\xdf\x37\xaf\x41\x5c\x89\xcf\xd5\xf2\xae\x30\x43\xbe\x71\xf7\x03\x9b\xe6\xc1\xe5\x2b\x85\x3b\xc4\x3d\x4e\x04\x63\xdf\x84\x8b\x4b\xd7\x15\x28\x54\x72\x68\x8e\x86\xf1\xd2\xde\x31\x42\x95\xb9\x8b\xb0\xbf\x1e\xb1\x92\x9b\x5d\x7a\xb2\xc5\xf4\xf2\x8f\x3b\xcd\x37\xf3\xfa\x67\x1f\xfa\x03\xf7\xa1\xde\xbc\x64\xfc\x48\x79\xbe\x2d\x79\xcf\xfd\xc2\xcd\xfa\x83\x31\xb5\xdb\x7c\x4f\x94\x1e\x0a\xa3\x76\x54\x2c\x05\x2f\x31\x87\x0f\x83\x4b\xdd\x99\xaa\x3c\x7e\x0d\x79\xd1\x71\xc2\xdd\xcc\x41\xfa\xc5\xfe\x0f\x4e\x14\x63\xcc\x4d\x75\x94\xd7\xb7\x9e\x30\xce\x02\x9e\xe0\xf0\xcf\x82\xff\xdf\x17\xfc\x86\xed\xfd\x78\xe6\x1b\x06\x65\x2c\x43\xc6\x98\x0e\xae\xee\xf7\x5c\x64\x0f\x6f\xa1\x4b\x3e\xc0\x2e\xa8\x12\x50\xe4\x53\x99\x40\xec\x04\x97\x00\x60\xa9\x71\x30\xc3\x5e\xb7\x4f\xc5\x93\xc0\x5f\x67\xf1\x9c\xfb\x1f\x1e\x60\xd1\x83\xef\xe8\x39\x16\x2a\x2c\x42\xe6\xfd\xa6\xf2\x13\x9a\x61\x63\x70\xb7\x18\xf7\x51\xf5\x78\x54\xc0\xb4\x96\x19\xb7\x9f\xef\x6d\xdb\xa0\x6a\x5e\xf1\x0d\x8a\xfd\xf6\xb6\x2f\x9f\xa8\x7a\xc6\xd6\xec\x3e\x2b\x42\x28\x85\x53\x84\xb8\x3a\x29\x42\x4a\xa7\x74\x0a\xb8\x91\x58\xfe\x92\xd6\xe3\x23\x3c\x7c\x81\x16\x3f\xcc\xf6\xf4\xdd\xb9\x54\xfa\x5f\x63\x88\x18\xbe\x12\xf6\x2b\xf2\xe9\x8f\x30\xe0\xbe\xdf\x9d\xa6\x6b\x74\x8d\x43\xbe\x92\xf0\xe7\x80\x73\x4b\xba\x1e\xe3\x98\x3a\xf8\x88\xb4\xe7\x0a\x16\x01\x6e\xe0\x94\x83\x54\x83\x55\x48\xfb\x73\xc9\xfe\x4e\xbf\x9c\x23\xa0\x60\x65\xb9\x64\xd9\xe3\x79\x06\xce\x05\xea\xdd\xe5\x29\xe8\xbb\xeb\x28\x67\x03\x7f\x75\x0c\xc6\xfe\x0a\x41\x8e\x58\xa8\xf7\x15\xee\xa8\x87\x86\x5f\xdf\xbe\xcd\x44\xbd\x55\x86\x24\xfa\xbf\x32\x9d\x5d\xb4\x6f\xa3\xfe\x07\xc4\x9e\x8f\x3c\xe0\x88\x8f\xfa\xf9\x1e\x37\xd2\x48\xc6\xbf\xdb\x49\x67\x58\x38\x62\xa5\x31\x1a\xce\xc6\xea\xcd\xe4\x79\x38\x34\xd3\x31\xe6\x06\x6e\xea\x78\x3c\xea\xa6\xff\x04\x00\x00\xff\xff\x41\x7e\xa5\xd7\x55\x1d\x00\x00") func svcEndpointsGotemplateBytes() ([]byte, error) { return bindataRead( @@ -213,12 +213,12 @@ func svcEndpointsGotemplate() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "svc/endpoints.gotemplate", size: 7278, mode: os.FileMode(0644), modTime: time.Unix(1464111000, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd2, 0xf2, 0x38, 0x92, 0x88, 0xc, 0x13, 0x3, 0xd4, 0x18, 0x3c, 0x12, 0x56, 0x41, 0xb3, 0xf9, 0xef, 0xc0, 0x12, 0x7e, 0x19, 0x69, 0x9b, 0x14, 0xfa, 0x63, 0x30, 0x40, 0xe0, 0xf1, 0x4a, 0xda}} + info := bindataFileInfo{name: "svc/endpoints.gotemplate", size: 7509, mode: os.FileMode(0644), modTime: time.Unix(1464111000, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4d, 0x55, 0x6e, 0xf, 0x6d, 0x7, 0xc3, 0x3, 0xa7, 0x1b, 0x5d, 0x90, 0x75, 0xbd, 0x16, 0x61, 0x12, 0x45, 0x49, 0x99, 0x96, 0xab, 0xe, 0xd3, 0xd4, 0x4b, 0xd7, 0x5c, 0xe0, 0x40, 0xec, 0xc2}} return a, nil } -var _svcServerRunGotemplate = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\x4f\x6f\xdb\x3a\x12\x3f\xcb\x80\xbf\xc3\x54\xe8\x2e\x64\xc0\xa5\x0a\xec\x76\x0f\xde\xfa\xd0\xc6\x69\x1b\xa0\x49\x0d\xc7\xed\x3b\x3e\xd0\xd2\x48\x26\x2a\x91\x7a\x24\x65\x37\x10\xfc\xdd\x1f\x86\x94\x64\xd9\x4d\xdc\xe6\xe5\x10\x4b\xe4\xcc\x6f\x7e\xf3\x5f\x71\x0c\x57\x2a\x45\xc8\x51\xa2\xe6\x16\x53\xd8\x3c\x80\xd5\xb5\x31\x0c\x16\x5f\xe0\xee\xcb\x1a\xae\x17\x37\x6b\x36\x1e\xc5\x31\xac\x50\xd7\x52\x0a\x99\x7b\x09\xd8\x8b\xa2\x00\xb5\x43\xbd\xd7\xc2\x22\xd8\xad\x30\x90\x89\x02\xbd\xf4\x37\xd4\x46\x28\x39\x83\xa6\x61\xed\xf3\xe1\x30\xbc\x81\x05\xb7\x38\xbc\xa6\x77\x12\x19\x8f\x2a\x9e\x7c\xe7\x39\x82\x41\xbd\x43\x4d\x27\xa2\xac\x94\xb6\x10\x8d\x47\xd0\xfe\x85\x59\xc1\xf3\x70\xf0\xae\xcc\xf0\x2d\x2b\x6d\x38\x1e\x05\x61\xa1\x72\xf7\x2b\xd1\x76\xbf\xf1\xd6\xda\xea\xe4\x25\xae\x2a\xad\xb2\x90\x0c\x05\x71\x0c\xff\x49\x61\xc9\xb5\x7d\x20\x91\x5c\xa9\xbc\x40\x96\xab\x82\xcb\x9c\x29\x9d\xc7\xb9\xae\x92\x5e\x74\x4d\x4e\xdf\xa3\xde\x89\x04\xc7\xa3\xa0\xda\x40\xd8\x34\x6c\xf9\xfe\xc6\xf1\x5d\x72\xbb\x85\x57\x87\x83\x33\xd6\x34\xec\xf4\x14\x62\xb3\x4b\x9e\xba\xda\x72\x99\x16\xa8\xc9\xa7\x09\x19\xdb\x71\x0d\x0b\xcc\x78\x5d\xd8\x2b\x25\x33\x91\x83\xff\xa1\xbb\xac\x96\x09\x08\x29\x6c\x34\x81\x66\x3c\x0a\x28\x32\xec\xde\x6a\x21\xf3\x6f\x5c\x47\xff\x3e\xd1\x63\x0b\xdc\xd4\xf9\xbb\x34\xd5\x53\x08\x53\x7a\x66\x3c\x4d\x75\x38\x85\x70\xf6\xe6\xf5\xff\x5e\xd3\x83\x13\x01\x2e\x53\x28\xd1\x6a\x91\x18\x28\x84\xb1\x28\x81\x24\xd1\x98\x70\xf2\x4b\x2b\x9f\xd6\xeb\x65\x6b\x84\x22\x3c\xb4\xf1\xc6\xd9\x20\x81\xe7\xc3\x7e\x5c\x2d\xaf\x5a\x58\xca\xc3\x10\xf6\xbf\x0e\x36\x5f\x2d\xaf\x20\x22\xf0\xc9\x23\xe8\x3e\x69\x5f\x0d\x02\xca\x9d\xd0\x4a\x96\x28\x2d\xec\xb8\x16\x7c\x53\xa0\x99\x82\xc8\xc0\xa0\x65\xf0\xa1\xe0\xb9\x81\x2d\xdf\x21\x54\x5a\x28\x2d\xec\x83\x2b\x75\xb8\x96\x3b\x92\x37\x6c\x3c\x0a\x44\xe6\xb0\x61\x36\x07\x65\xd8\x47\xb4\x28\x77\x51\xb8\xb8\x7e\xff\xf5\xe3\x9f\xef\x16\x8b\x55\x38\xf9\xbf\x17\x78\x31\x87\x30\x74\xa9\x09\x9e\xc8\x05\xcc\x9d\xe4\x78\x14\x1c\x3c\xb0\x2b\xf7\x53\xe0\xe5\x97\xd5\x9a\x20\xdd\xd5\x93\x90\x5d\xe0\x61\x0e\x59\x69\xd9\x7d\xa5\x85\xb4\x59\x14\xce\xfe\x65\xc2\xa9\xd3\x9d\x1c\xad\x3c\x42\x9f\xf4\x7f\x93\xfd\xc0\xd4\x29\xf9\x47\x60\x29\x71\xbf\x09\xdb\xe5\xf8\x04\xd6\xcd\x05\x37\xae\x5c\xf1\x27\x4a\x5a\x2e\xa4\x01\xbb\x45\xd0\xf8\x57\x2d\x34\xa6\x90\x09\x2c\x52\x03\x99\xd2\xd0\x8d\x2a\xde\x0f\x11\xfb\x50\x61\xa7\x6e\xac\xae\x13\xeb\x8c\xf7\x4e\x18\x57\x73\xe3\x51\x70\x4c\x4a\x7f\xd4\x53\xea\x4e\x0e\x7d\xdf\xdd\xe1\xfe\x5a\xa6\x95\x12\xd2\x9a\xc8\xf8\x49\x00\xd5\x86\x35\x0d\x6b\xe7\x02\xbb\xe3\x25\x1e\x0e\xf7\x8e\xc7\x04\xcc\x2e\x61\xbd\x86\xa3\x10\xc7\xf0\xbe\x36\x42\xa2\x31\x90\xaa\x92\x0b\xc9\xba\x52\xfd\x43\xf3\xaa\x9b\x2f\xb0\x17\x76\x0b\xa5\x48\xd3\x02\xf7\x5c\xa3\x61\x70\x8f\x08\xdd\xa4\x88\x87\x37\xb9\x1a\x8f\x82\x8e\xcd\xbc\x97\x61\x84\xd7\xc2\x75\x64\xfb\xb6\xe8\x48\x1d\x39\x04\x34\x75\xa2\xf1\x28\x68\x1a\xcd\x65\x8e\xf0\x52\x50\x5a\x7b\xc7\x6e\xd1\x6e\x55\x6a\x68\x62\x51\x1a\x9b\x66\xad\x3e\xab\x3d\x6a\x78\x29\x5a\xa7\x7b\xcc\xb9\xf3\xfb\x96\x7f\xc7\xa6\xf9\xe9\x76\x40\x25\x68\x1a\x94\xa9\xc3\xf3\xc4\xb0\x0f\xd5\x6c\x7e\x1a\xbb\xe6\x19\xc4\x7e\x32\x39\xa3\x2d\x71\x81\xf0\xf4\x84\xca\xe1\x24\x1f\x06\x0b\x4c\x68\x59\x1e\xd3\xf8\xdc\xd4\x1c\xbd\x3a\x4b\xce\xb1\x96\x7a\x11\x1f\x07\x8d\xb6\xd6\x12\xfa\xd3\x63\x4b\xac\x6a\x09\xc6\x72\x6d\x0d\x70\x90\xb8\x07\x1a\xb8\x6d\xd9\x4f\xc1\x0d\xc4\xee\x85\x46\x3a\x07\x37\xf5\xdb\x33\xcf\xdc\x6e\xd1\x41\x55\xdc\x18\x4c\xa9\xbb\xa8\x4b\x48\xba\x50\x79\x4e\xdd\xe3\x6a\x7d\x55\xcb\x28\xc9\xba\xd5\xe3\x97\x4d\x57\x64\xb3\x81\x23\x77\xb8\xef\x8a\x6c\x72\x9e\xc2\xc7\xfa\xa5\x2f\xc1\x5b\x4c\xb6\x5c\x8a\x84\x17\x83\x22\x44\xad\x13\xd2\x2c\xf9\x77\x8c\xe8\x1e\x50\x6b\xa5\x7b\xa5\x1b\x69\x51\xeb\xba\xb2\x1d\x01\x52\xca\xd5\x91\x4e\x2f\xf0\xc9\x9f\x44\x84\xd8\xab\xfb\x65\xe7\x77\x45\xaf\x4b\xee\xb6\xdb\x34\x28\x54\xce\x96\x34\x45\x0b\x19\x85\x56\x73\x69\x68\x8a\x86\xdd\xfa\xa4\x87\x76\x0d\x25\xd9\x60\xa4\x7b\x03\x41\xe9\x22\x43\x2b\xb0\x8d\x0a\xde\xd6\x3f\x5c\x58\x82\x92\x79\x42\x51\x18\x3b\x24\xff\x19\x12\x87\x53\x2f\xdf\xb2\xfd\x40\x54\xdc\x0d\xbb\x91\x29\xfe\x98\x5c\xd2\x4d\xca\xb4\x10\x12\x9f\x86\xb8\xf2\x02\x17\x41\xe8\x9f\x28\x2e\x80\x2c\xbd\xc0\x45\x10\xf3\x50\x6e\x54\xf1\x34\xc6\xbd\xbb\xbf\x08\x61\x35\x4f\x2e\xb0\x58\xd3\xf5\xa4\x0d\xb3\x2b\x92\xb7\xaf\xbc\xec\x67\x97\xcc\x77\x32\x75\xf1\x8e\x4e\xd2\x32\x85\xd2\x2d\xc0\xa8\x2f\x00\xf7\x25\xd2\xe7\xf5\x59\x05\x40\xaa\x67\xf9\xef\xf6\x89\x73\x6c\xdb\x0d\x2d\x1a\x7c\x74\xd3\x57\xe0\xa0\xb9\x7f\x4d\xfe\xf8\x31\xb5\x3d\xe3\xee\xba\xfb\x9f\x71\x27\xd5\x70\x3a\xa4\xde\x6d\x39\xc7\xa9\x90\x53\xea\x33\x72\x40\xa2\x6d\x59\x45\xa1\x4d\xaa\xc7\xa4\x45\xe6\x84\x5f\xcc\x41\x8a\xc2\x5b\xee\xbd\x42\xad\xdd\xbb\x9f\x60\xf4\xe8\xc7\x69\x60\xf4\x6e\x18\x1f\x02\xf4\x4b\xf2\x2c\x3c\x6e\x6e\xb8\xcf\xbd\xae\x85\xb4\x6f\xa0\x6a\xc3\x56\x98\x13\x33\xfd\xc4\xba\x8d\xcc\x14\x8c\xde\x9d\x15\x89\x61\x3e\xb6\x85\x3c\x0b\xe7\xaa\x96\x2f\xc6\xa3\xd3\xa0\xe1\x0f\x41\xf1\x7a\xfb\xaa\x9d\x1a\x8e\xfc\xdf\x01\x00\x00\xff\xff\xe3\x8a\xc9\x38\x39\x0d\x00\x00") +var _svcServerRunGotemplate = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\x5f\x6f\xdb\x36\x10\x7f\x96\x01\x7f\x87\xab\xd0\x0d\x32\xe0\x52\x05\xb6\xee\x21\xab\x1f\xda\x38\x6d\x03\x34\xa9\xe1\xb8\xdd\xe3\xc0\x48\x27\x99\xa8\x44\x6a\x24\x25\x37\x10\xfc\xdd\x87\x23\x25\x59\xf6\x12\xb7\x5d\x1e\x62\x89\xbc\xfb\xdd\xef\xfe\x2b\x8e\xe1\x52\xa5\x08\x39\x4a\xd4\xdc\x62\x0a\xf7\x0f\x60\x75\x6d\x0c\x83\xe5\x27\xb8\xfd\xb4\x81\xab\xe5\xf5\x86\x4d\x27\x71\x0c\x6b\xd4\xb5\x94\x42\xe6\x5e\x02\x76\xa2\x28\x40\x35\xa8\x77\x5a\x58\x04\xbb\x15\x06\x32\x51\xa0\x97\xfe\x82\xda\x08\x25\x2f\xa0\x6d\x59\xf7\xbc\xdf\x8f\x6f\x60\xc9\x2d\x8e\xaf\xe9\x9d\x44\xa6\x93\x8a\x27\x5f\x79\x8e\x60\x50\x37\xa8\xe9\x44\x94\x95\xd2\x16\xa2\xe9\x04\xba\xbf\x30\x2b\x78\x1e\x8e\xde\x95\x19\xbf\x65\xa5\x0d\xa7\x93\x20\x2c\x54\xee\x7e\x25\xda\xfe\x37\xde\x5a\x5b\x1d\xbd\xc4\x55\xa5\x55\x16\x92\xa1\x20\x8e\xe1\xb7\x14\x56\x5c\xdb\x07\x12\xc9\x95\xca\x0b\x64\xb9\x2a\xb8\xcc\x99\xd2\x79\x9c\xeb\x2a\x19\x44\x37\xe4\xf4\x1d\xea\x46\x24\x38\x9d\x04\xd5\x3d\x84\x6d\xcb\x56\x6f\xaf\x1d\xdf\x15\xb7\x5b\x78\xb1\xdf\x3b\x63\x6d\xcb\x8e\x4f\x21\x36\x4d\xf2\xd4\xd5\x96\xcb\xb4\x40\x4d\x3e\xcd\xc8\x58\xc3\x35\x2c\x31\xe3\x75\x61\x2f\x95\xcc\x44\x0e\xfe\x87\xee\xb2\x5a\x26\x20\xa4\xb0\xd1\x0c\xda\xe9\x24\xa0\xc8\xb0\x3b\xab\x85\xcc\xbf\x70\x1d\xfd\x7a\xa4\xc7\x96\x78\x5f\xe7\x6f\xd2\x54\xcf\x21\x4c\xe9\x99\xf1\x34\xd5\xe1\x1c\xc2\x8b\x57\x2f\xff\x78\x49\x0f\x4e\x04\xb8\x4c\xa1\x44\xab\x45\x62\xa0\x10\xc6\xa2\x04\x92\x44\x63\xc2\xd9\x77\xad\x7c\xd8\x6c\x56\x9d\x11\x8a\xf0\xd8\xc6\x2b\x67\x83\x04\x7e\x1e\xf6\xfd\x7a\x75\xd9\xc1\x52\x1e\xc6\xb0\xbf\x3b\xd8\x7c\xbd\xba\x84\x88\xc0\x67\x8f\xa0\xfb\xa4\x7d\x36\x08\x28\x1b\xa1\x95\x2c\x51\x5a\x68\xb8\x16\xfc\xbe\x40\x33\x07\x91\x81\x41\xcb\xe0\x5d\xc1\x73\x03\x5b\xde\x20\x54\x5a\x28\x2d\xec\x83\x2b\x75\xb8\x92\x0d\xc9\x1b\x36\x9d\x04\x22\x73\xd8\x70\xb1\x00\x65\xd8\x7b\xb4\x28\x9b\x28\x5c\x5e\xbd\xfd\xfc\xfe\xef\x37\xcb\xe5\x3a\x9c\xfd\xe9\x05\x9e\x2d\x20\x0c\x5d\x6a\x82\x27\x72\x01\x0b\x27\x39\x9d\x04\x7b\x0f\xec\xca\xfd\x18\x78\xf5\x69\xbd\x21\x48\x77\xf5\x24\x64\x1f\x78\x58\x40\x56\x5a\x76\x57\x69\x21\x6d\x16\x85\x17\xbf\x98\x70\xee\x74\x67\x07\x2b\x8f\xd0\x27\xfd\x1f\x64\x3f\x32\x75\x4c\xfe\x11\x58\x4a\xdc\x0f\xc2\xf6\x39\x3e\x82\x75\x73\xc1\x8d\x2b\x57\xfc\x89\x92\x96\x0b\x69\xc0\x6e\x11\x34\xfe\x53\x0b\x8d\x29\x64\x02\x8b\xd4\x40\xa6\x34\xf4\xa3\x8a\x0f\x43\xc4\x3e\x54\xd8\xab\x1b\xab\xeb\xc4\x3a\xe3\x83\x13\xc6\xd5\xdc\x74\x12\x1c\x92\x32\x1c\x0d\x94\xfa\x93\xfd\xd0\x77\xb7\xb8\xbb\x92\x69\xa5\x84\xb4\x26\x32\x7e\x12\x40\x75\xcf\xda\x96\x75\x73\x81\xdd\xf2\x12\xf7\xfb\x3b\xc7\x63\x06\xa6\x49\xd8\xa0\xe1\x28\xc4\x31\xbc\xad\x8d\x90\x68\x0c\xa4\xaa\xe4\x42\xb2\xbe\x54\xff\xd2\xbc\xea\xe7\x0b\xec\x84\xdd\x42\x29\xd2\xb4\xc0\x1d\xd7\x68\x18\xdc\x21\x42\x3f\x29\xe2\xf1\x4d\xae\xa6\x93\xa0\x67\xb3\x18\x64\x18\xe1\x75\x70\x3d\xd9\xa1\x2d\x7a\x52\x07\x0e\x01\x4d\x9d\x68\x3a\x09\xda\x56\x73\x99\x23\x3c\x17\x94\xd6\xc1\xb1\x1b\xb4\x5b\x95\x1a\x9a\x58\x94\xc6\xb6\xdd\xa8\x8f\x6a\x87\x1a\x9e\x8b\xce\xe9\x01\x73\xe1\xfc\xbe\xe1\x5f\xb1\x6d\xff\x73\x3b\xa2\x12\xb4\x2d\xca\xd4\xe1\x79\x62\x38\x84\xea\xc2\x63\x1c\x05\x7c\xf6\xc3\xe4\x06\x1c\xf6\x08\x01\x58\xc0\x19\xf2\x63\x56\xa3\xb4\x18\x2c\x30\xa1\x9d\x79\xc8\xe6\xcf\x66\xe8\xe0\xdc\x49\x8e\x0e\x1e\x0e\x22\x3e\x1c\x1a\x6d\xad\x25\x0c\xa7\x87\xce\x58\xd7\x12\x8c\xe5\xda\x1a\xe0\x20\x71\x07\x34\x77\xbb\xea\x9f\x83\x9b\x8b\xfd\x0b\x4d\x76\x0e\x6e\xf8\x77\x67\x9e\xb9\xdd\xa2\x83\xaa\xb8\x31\x98\x52\x93\x51\xb3\x90\x74\xa1\xf2\x9c\x9a\xc8\x95\xfc\xba\x96\x51\x92\xf5\x1b\xc8\xef\x9c\xbe\xd6\x2e\x46\x8e\xdc\xe2\xae\xaf\xb5\xd9\x69\x26\x1f\x6b\x9b\xa1\x12\x6f\x30\xd9\x72\x29\x12\x5e\x8c\x6a\x11\xb5\x4e\x48\xb3\xe4\x5f\x31\xa2\x7b\x40\xad\x95\x1e\x94\xae\xa5\x45\xad\xeb\xca\xf6\x04\x48\x29\x57\x07\x3a\x83\xc0\x07\x7f\x12\x11\xe2\xa0\xee\x77\x9e\x5f\x19\x83\x2e\xb9\xdb\x2d\xd5\xa0\x50\x39\x5b\xd1\x30\x2d\x64\x14\x5a\xcd\xa5\xa1\x61\x1a\xf6\x5b\x94\x1e\xba\x6d\x94\x64\xa3\xc9\xee\x0d\x04\xa5\x8b\x0c\x6d\xc2\x2e\x2a\x78\x53\x7f\x73\x61\x09\x4a\xe6\x09\x45\x61\xec\x90\xfc\xd7\x48\x1c\xce\xbd\x7c\xc7\xf6\x1d\x51\x71\x37\xec\x5a\xa6\xf8\x6d\x76\x4e\x37\x29\xd3\x42\x48\x7c\x1a\xe2\xd2\x0b\x9c\x05\xa1\x7f\xa2\x38\x03\xb2\xf2\x02\x67\x41\xcc\x43\x79\xaf\x8a\xa7\x31\xee\xdc\xfd\x59\x08\xab\x79\x72\x86\xc5\x86\xae\x67\x5d\x98\x5d\x91\xbc\x7e\xe1\x65\x3f\xba\x64\xbe\x91\xa9\x8b\x77\x74\x94\x96\x39\x94\x6e\x0f\x46\x43\x01\xb8\x0f\x92\x21\xaf\x3f\x55\x00\xa4\x7a\x92\xff\x7e\xad\x38\xc7\xb6\xfd\xec\xa2\xf9\x47\x37\x43\x05\x8e\x9a\xfb\xfb\xe4\x0f\xdf\x54\xdb\x13\xee\xae\xbb\xff\x1f\x77\x52\x0d\xe7\x63\xea\xfd\xb2\x73\x9c\x0a\x39\xa7\x3e\x23\x07\x24\xda\x8e\x55\x14\xda\xa4\x7a\x4c\x5a\x64\x4e\xf8\xd9\x02\xa4\x28\xbc\xe5\xc1\x2b\xd4\xda\xbd\xfb\x09\x46\x8f\x7e\x9c\x06\x46\x37\xe3\xf8\x10\xa0\xdf\x95\x27\xe1\x71\x73\xc3\x7d\xf5\xf5\x2d\xa4\x7d\x03\x55\xf7\x6c\x8d\x39\x31\xd3\x4f\x6c\xdd\xc8\xcc\xc1\xe8\xe6\xa4\x48\x0c\xf3\xb1\x2d\xe4\x49\x38\xd7\xb5\x7c\x36\x9d\x1c\x07\x0d\xbf\x09\x8a\xd7\xeb\x17\xdd\xd4\x70\xe4\xff\x0d\x00\x00\xff\xff\xb4\x2b\x79\x84\x40\x0d\x00\x00") func svcServerRunGotemplateBytes() ([]byte, error) { return bindataRead( @@ -233,8 +233,8 @@ func svcServerRunGotemplate() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "svc/server/run.gotemplate", size: 3385, mode: os.FileMode(0644), modTime: time.Unix(1464111000, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x67, 0xdd, 0x59, 0xa1, 0xce, 0x1a, 0x2b, 0x34, 0xcd, 0x93, 0x43, 0x90, 0xf9, 0xe2, 0x37, 0x40, 0x9e, 0xee, 0x47, 0x3e, 0xb1, 0x99, 0x56, 0x52, 0x40, 0xf, 0xd1, 0x8b, 0x51, 0x82, 0x90, 0x6a}} + info := bindataFileInfo{name: "svc/server/run.gotemplate", size: 3392, mode: os.FileMode(0644), modTime: time.Unix(1464111000, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xca, 0xfc, 0x1b, 0xa4, 0xf4, 0xa5, 0x43, 0xe7, 0xae, 0xb1, 0x83, 0x5a, 0x5b, 0xcb, 0xd9, 0x37, 0x73, 0xc, 0x3c, 0x6c, 0xfc, 0xb5, 0x87, 0xfb, 0xc4, 0x8f, 0xf9, 0x21, 0x15, 0xda, 0x5, 0xa6}} return a, nil } From 401610b99c24338999d832ed6bb91633c066539f Mon Sep 17 00:00:00 2001 From: Nick Godzieba Date: Sat, 6 Mar 2021 23:01:34 +0100 Subject: [PATCH 4/8] fixed syntax issues --- .../transport/setup_test.go | 39 +++++++++---------- gengokit/httptransport/templates/client.go | 2 +- gengokit/template/template.go | 4 +- 3 files changed, 22 insertions(+), 23 deletions(-) diff --git a/cmd/_integration-tests/transport/setup_test.go b/cmd/_integration-tests/transport/setup_test.go index 0a052029..a31bc51a 100644 --- a/cmd/_integration-tests/transport/setup_test.go +++ b/cmd/_integration-tests/transport/setup_test.go @@ -44,26 +44,25 @@ func TestMain(m *testing.M) { CustomVerbE := svc.MakeCustomVerbEndpoint(service) endpoints := svc.NewEndpoints() - endpoints.GetWithQueryEndpoint = getWithQueryE - endpoints.GetWithRepeatedQueryEndpoint = getWithRepeatedQueryE - endpoints.GetWithRepeatedStringQueryEndpoint = getWithRepeatedStringQueryE - endpoints.GetWithEnumQueryEndpoint = getWithEnumQueryE - endpoints.PostWithNestedMessageBodyEndpoint = postWithNestedMessageBodyE - endpoints.CtxToCtxEndpoint = ctxToCtxE - endpoints.GetWithCapsPathEndpoint = getWithCapsPathE - endpoints.GetWithPathParamsEndpoint = getWithPathParamsE - endpoints.GetWithEnumPathEndpoint = getWithEnumPathE - endpoints.GetWithOneofQueryEndpoint = getWithOneofQueryE - endpoints.EchoOddNamesEndpoint = echoOddNamesE - endpoints.ErrorRPCEndpoint = errorRPCE - endpoints.ErrorRPCNonJSONEndpoint = errorRPCNonJSONE - endpoints.ErrorRPCNonJSONLongEndpoint = errorRPCNonJSONLongE - endpoints.X2AOddRPCNameEndpoint = X2AOddRPCNameE - endpoints.ContentTypeTestEndpoint = contentTypeTestE - endpoints.StatusCodeAndNilHeadersEndpoint = StatusCodeAndNilHeadersE - endpoints.StatusCodeAndHeadersEndpoint = StatusCodeAndHeadersE - endpoints.CustomVerbEndpoint = CustomVerbE - } + endpoints.GetWithQueryEndpoint = getWithQueryE + endpoints.GetWithRepeatedQueryEndpoint = getWithRepeatedQueryE + endpoints.GetWithRepeatedStringQueryEndpoint = getWithRepeatedStringQueryE + endpoints.GetWithEnumQueryEndpoint = getWithEnumQueryE + endpoints.PostWithNestedMessageBodyEndpoint = postWithNestedMessageBodyE + endpoints.CtxToCtxEndpoint = ctxToCtxE + endpoints.GetWithCapsPathEndpoint = getWithCapsPathE + endpoints.GetWithPathParamsEndpoint = getWithPathParamsE + endpoints.GetWithEnumPathEndpoint = getWithEnumPathE + endpoints.GetWithOneofQueryEndpoint = getWithOneofQueryE + endpoints.EchoOddNamesEndpoint = echoOddNamesE + endpoints.ErrorRPCEndpoint = errorRPCE + endpoints.ErrorRPCNonJSONEndpoint = errorRPCNonJSONE + endpoints.ErrorRPCNonJSONLongEndpoint = errorRPCNonJSONLongE + endpoints.X2AOddRPCNameEndpoint = X2AOddRPCNameE + endpoints.ContentTypeTestEndpoint = contentTypeTestE + endpoints.StatusCodeAndNilHeadersEndpoint = StatusCodeAndNilHeadersE + endpoints.StatusCodeAndHeadersEndpoint = StatusCodeAndHeadersE + endpoints.CustomVerbEndpoint = CustomVerbE // http test server h := svc.MakeHTTPHandler(endpoints) diff --git a/gengokit/httptransport/templates/client.go b/gengokit/httptransport/templates/client.go index a7ea8bce..af35d29d 100644 --- a/gengokit/httptransport/templates/client.go +++ b/gengokit/httptransport/templates/client.go @@ -181,7 +181,7 @@ func New(instance string, options ...httptransport.ClientOption) (pb.{{.Service. {{range $method := .HTTPHelper.Methods -}} {{ if $method.Bindings -}} {{ with $binding := index $method.Bindings 0 -}} - endpoints{{$method.Name}}Endpoint = {{$binding.Label}}Endpoint + endpoints.{{$method.Name}}Endpoint = {{$binding.Label}}Endpoint {{end}} {{- end}} {{- end}} diff --git a/gengokit/template/template.go b/gengokit/template/template.go index f06a6c91..189c4cf4 100644 --- a/gengokit/template/template.go +++ b/gengokit/template/template.go @@ -431,8 +431,8 @@ var _bintree = &bintree{nil, map[string]*bintree{ }}, }}, "handlers": {nil, map[string]*bintree{ - "handlers.gotemplate": {handlersHandlersGotemplate, map[string]*bintree{}}, - "hooks.gotemplate": {handlersHooksGotemplate, map[string]*bintree{}}, + "handlers.gotemplate": {handlersHandlersGotemplate, map[string]*bintree{}}, + "hooks.gotemplate": {handlersHooksGotemplate, map[string]*bintree{}}, "middlewares.gotemplate": {handlersMiddlewaresGotemplate, map[string]*bintree{}}, }}, "svc": {nil, map[string]*bintree{ From df04142d8ba7d644278e645c7e9f09e286b0fc89 Mon Sep 17 00:00:00 2001 From: Nick Godzieba Date: Sat, 6 Mar 2021 23:19:19 +0100 Subject: [PATCH 5/8] fixed syntax issues --- cmd/_integration-tests/middlewares/setup_test.go | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/cmd/_integration-tests/middlewares/setup_test.go b/cmd/_integration-tests/middlewares/setup_test.go index 0d2022f9..a0c65235 100644 --- a/cmd/_integration-tests/middlewares/setup_test.go +++ b/cmd/_integration-tests/middlewares/setup_test.go @@ -24,10 +24,9 @@ func TestMain(m *testing.M) { labeledTestHandler := svc.MakeLabeledTestHandlerEndpoint(service) middlewareEndpoints = svc.NewEndpoints() - middlewareEndpoints.AlwaysWrappedEndpoint = alwaysWrapped - middlewareEndpoints.SometimesWrappedEndpoint = sometimesWrapped - middlewareEndpoints.LabeledTestHandlerEndpoint = labeledTestHandler - } + middlewareEndpoints.AlwaysWrappedEndpoint = alwaysWrapped + middlewareEndpoints.SometimesWrappedEndpoint = sometimesWrapped + middlewareEndpoints.LabeledTestHandlerEndpoint = labeledTestHandler middlewareEndpoints = handlers.WrapEndpoints(middlewareEndpoints) From d69bffcff34479b005d8f08cc1bfabd997ed7baa Mon Sep 17 00:00:00 2001 From: Nick Godzieba Date: Sun, 7 Mar 2021 16:29:39 +0100 Subject: [PATCH 6/8] added support for custom http HandlerFuncs --- gengokit/httptransport/templates/server.go | 16 +++++--- .../NAME-service/svc/endpoints.gotemplate | 37 +++++++++++++++++++ gengokit/template/template.go | 8 ++-- 3 files changed, 51 insertions(+), 10 deletions(-) diff --git a/gengokit/httptransport/templates/server.go b/gengokit/httptransport/templates/server.go index 0e9f47e6..9f226b1a 100644 --- a/gengokit/httptransport/templates/server.go +++ b/gengokit/httptransport/templates/server.go @@ -119,12 +119,16 @@ func MakeHTTPHandler(endpoints Endpoints, options ...httptransport.ServerOption) {{range $method := .HTTPHelper.Methods}} {{range $binding := $method.Bindings}} - m.Methods("{{$binding.Verb | ToUpper}}").Path("{{$binding.PathTemplate}}").Handler(httptransport.NewServer( - endpoints.{{$method.Name}}Endpoint, - endpoints.GetHttpRequestDecoder("{{$method.Name}}", DecodeHTTP{{$binding.Label}}Request), - endpoints.GetHttpResponseEncoder("{{$method.Name}}", EncodeHTTPGenericResponse), - append(serverOptions, endpoints.GetHttpServerOptions("{{$method.Name}}")...)..., - )) + if endpoints.HasHttpHandlerFunc("{{$method.Name}}") { + m.Methods("{{$binding.Verb | ToUpper}}").Path("{{$binding.PathTemplate}}").HandlerFunc(endpoints.GetHttpHandlerFunc("{{$method.Name}}")) + } else { + m.Methods("{{$binding.Verb | ToUpper}}").Path("{{$binding.PathTemplate}}").Handler(httptransport.NewServer( + endpoints.{{$method.Name}}Endpoint, + endpoints.GetHttpRequestDecoder("{{$method.Name}}", DecodeHTTP{{$binding.Label}}Request), + endpoints.GetHttpResponseEncoder("{{$method.Name}}", EncodeHTTPGenericResponse), + append(serverOptions, endpoints.GetHttpServerOptions("{{$method.Name}}")...)..., + )) + } {{- end}} {{- end}} return m diff --git a/gengokit/template/NAME-service/svc/endpoints.gotemplate b/gengokit/template/NAME-service/svc/endpoints.gotemplate index 47055417..c1a22bab 100644 --- a/gengokit/template/NAME-service/svc/endpoints.gotemplate +++ b/gengokit/template/NAME-service/svc/endpoints.gotemplate @@ -13,6 +13,7 @@ package svc import ( "fmt" "context" + "net/http" httptransport "github.com/go-kit/kit/transport/http" "github.com/go-kit/kit/endpoint" @@ -37,6 +38,7 @@ type Endpoints struct { httpServerOptions map[string][]httptransport.ServerOption httpRequestDecoders map[string]httptransport.DecodeRequestFunc httpResponseEncoders map[string]httptransport.EncodeResponseFunc + httpHandlerFuncs map[string]func(http.ResponseWriter, *http.Request) {{range $i := .Service.Methods}} {{$i.Name}}Endpoint endpoint.Endpoint {{- end}} @@ -47,6 +49,7 @@ func NewEndpoints() Endpoints { httpServerOptions: make(map[string][]httptransport.ServerOption), httpRequestDecoders: make(map[string]httptransport.DecodeRequestFunc), httpResponseEncoders: make(map[string]httptransport.EncodeResponseFunc), + httpHandlerFuncs: make(map[string]func(http.ResponseWriter, *http.Request)), } } @@ -168,6 +171,21 @@ func (e *Endpoints) WrapAllWithHttpOptionExcept(serverOption httptransport.Serve } } +// WrapWithHttpOption wraps one Endpoint entry of filed HttpServerOptions of struct Endpoints with a +// httptransport.ServerOption. +// WrapWithHttpOption(serverOption, "Status") +func (e *Endpoints) WrapWithHttpOption(endpoint string, serverOption httptransport.ServerOption) { + var options []httptransport.ServerOption + if o, ok := e.httpServerOptions[endpoint]; ok { + options = append(o, serverOption) + } else { + options = []httptransport.ServerOption{ + serverOption, + } + } + e.httpServerOptions[endpoint] = options +} + // GetHttpServerOptions returns all httptransport.ServerOption associated with the given endpoint. func (e Endpoints) GetHttpServerOptions(endpoint string) []httptransport.ServerOption { if options, ok := e.httpServerOptions[endpoint]; ok { @@ -201,3 +219,22 @@ func (e Endpoints) GetHttpResponseEncoder(endpoint string, fallback httptranspor } return fallback } + +// SetHttpHandlerFunc assigns a custom http HandlerFunc to an endpoint instead of using the default one. +func (e Endpoints) SetHttpHandlerFunc(endpoint string, handler func(http.ResponseWriter, *http.Request)) { + e.httpHandlerFuncs[endpoint] = handler +} + +// GetHttpHandlerFunc returns the http HandlerFunc for the given endpoint. +func (e Endpoints) GetHttpHandlerFunc(endpoint string) func(http.ResponseWriter, *http.Request) { + if handler, ok := e.httpHandlerFuncs[endpoint]; ok { + return handler + } + return nil +} + +// HasHttpHandlerFunc checks if a custom http HandlerFunc is associated with the given endpoint. +func (e Endpoints) HasHttpHandlerFunc(endpoint string) bool { + _, ok := e.httpHandlerFuncs[endpoint] + return ok +} diff --git a/gengokit/template/template.go b/gengokit/template/template.go index 189c4cf4..650902d5 100644 --- a/gengokit/template/template.go +++ b/gengokit/template/template.go @@ -6,7 +6,7 @@ // NAME-service/handlers/middlewares.gotemplate (76B) // NAME-service/svc/client/grpc/client.gotemplate (3.331kB) // NAME-service/svc/client/http/client.gotemplate (107B) -// NAME-service/svc/endpoints.gotemplate (7.509kB) +// NAME-service/svc/endpoints.gotemplate (9.01kB) // NAME-service/svc/server/run.gotemplate (3.392kB) // NAME-service/svc/transport_grpc.gotemplate (3.056kB) // NAME-service/svc/transport_http.gotemplate (108B) @@ -198,7 +198,7 @@ func svcClientHttpClientGotemplate() (*asset, error) { return a, nil } -var _svcEndpointsGotemplate = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x59\x5d\x6f\xe3\xb8\x15\x7d\xce\x00\xf9\x0f\x77\x8d\x14\x63\x2f\x34\xf2\xf6\x35\x03\x3f\xb4\x33\xd9\x9d\x00\x9d\x0f\x6c\xa6\xdd\x87\x20\x58\xd0\xd2\x95\x4d\x44\x22\xb5\x24\x65\xc7\x15\xf2\xdf\x8b\xcb\x0f\x99\xb2\x64\x3b\xd3\x05\x8a\x62\xb1\x0f\x83\x64\x24\xf2\xf0\xde\x73\xce\xbd\x24\x95\xf9\x1c\xde\xc9\x1c\x61\x85\x02\x15\x33\x98\xc3\x72\x07\x46\x35\x5a\xa7\xf0\xfe\x33\x7c\xfa\xfc\x15\x6e\xde\xdf\x7e\x4d\x2f\x5f\xcd\xe7\xf0\x33\xaa\x46\x08\x2e\x56\x6e\x04\x6c\x79\x59\x82\xdc\xa0\xda\x2a\x6e\x10\xcc\x9a\x6b\x28\x78\x89\x6e\xf4\xbf\x50\x69\x2e\xc5\x35\xb4\x6d\xea\x7f\x7f\x7e\x8e\xdf\xc0\x7b\x66\x30\x7e\x4d\xff\xa7\x21\x97\xaf\x6a\x96\x3d\xb2\x15\x82\xde\x64\xf4\xdf\xf9\x1c\xbe\x06\x70\xc8\xa4\x30\x8c\x0b\x0d\x15\x9a\xb5\xcc\x35\x18\x09\x15\x7b\x44\xe0\x22\xe7\x1b\x9e\x37\xac\x04\x14\x79\x2d\xb9\x30\x1a\x0a\x25\x2b\xd0\xa8\x36\x3c\x43\x9d\x58\x28\x85\xbf\x35\xa8\x0d\x30\x91\x83\x42\x5d\x4b\xa1\x11\xcc\xae\x46\x0b\x45\x63\x29\x17\xa9\x71\x0f\x93\x00\xd3\xb0\xc5\xb2\xa4\x9f\x28\x32\x99\xa3\xd2\x04\x60\x01\x73\xf4\x0f\x0a\xa9\xfc\x4c\x0b\x97\xd8\x07\x8c\x48\x2a\x40\x36\x0a\x74\x53\xd7\x52\x11\xcb\x46\x31\xa1\xe9\x77\x5a\x8f\xb3\x92\xff\x9b\x19\x2e\x85\x85\x2b\xa4\xaa\x98\xd1\x29\x65\xce\x2b\x3b\x68\x7a\xf9\xea\x62\x52\x54\x66\x42\x3f\x89\x00\x7c\xb2\xbf\xaf\x8d\xa9\xf7\x50\x93\x15\x37\xeb\x66\x99\x66\xb2\x9a\xaf\xe4\x9b\x47\x6e\xe6\xf4\xaf\x1b\x30\xa7\xe1\x13\x82\xbd\x38\x32\x34\x24\xec\x06\xd5\x4b\x98\xb4\x6d\xfa\xe5\xef\xb7\x36\x8a\x2f\xcc\xac\xe1\xcd\xf3\xf3\xe4\xf2\xd5\xcc\xab\x72\xd3\xf1\x9c\xc9\xb2\xc4\xcc\xe8\x90\xae\x59\x47\xf4\x81\x59\x33\x03\x99\xac\x6a\xe2\x86\x09\x60\x79\x1e\x44\x49\xe1\xd6\xbc\xd6\x16\xad\x42\x26\x0c\x69\xb0\x44\x68\x34\xe6\x44\x36\x83\x35\x96\x35\x2a\xd0\x46\x35\x99\x49\xe8\xb5\x5f\x6b\x7c\x29\x2e\x8c\x04\x66\xf1\x34\x17\xab\x12\xa1\x66\x8a\x55\x68\x50\x59\x5f\xda\x37\xb7\x02\x98\x53\x5a\x25\xc0\xcd\x6b\x4d\xeb\x15\x4d\x69\x05\x2b\x1a\x91\x91\x18\x3e\x6c\x81\xa4\x97\x04\x59\xdb\x0a\x01\x49\x73\x6b\x54\x6f\xc2\x9a\x16\x71\xc9\x34\xd7\x29\xfc\x28\x15\xe0\x13\xab\xea\x12\x13\xd8\xc9\x06\x2a\xbe\x5a\x1b\xa8\x99\x26\xbb\x44\x7c\x51\x90\xdd\x4a\x6e\xa1\x5a\xc9\xbc\xc9\xd0\x71\xc1\x04\x90\x5a\xe9\x07\x26\xf2\x92\xa2\xdc\x72\xb3\x06\x64\xd9\xda\xfb\x1e\xa6\x61\xfd\x19\x6c\xb9\xc2\x1c\x9a\xda\xa1\xea\x1a\x33\x5e\xf0\x0c\x6a\x66\xd6\x29\x4c\x6f\x5d\x84\x5c\xd3\x0a\x4b\xb6\x2c\x77\xc0\xa0\xe2\xda\xb8\xa2\x81\x1c\x35\x5f\x09\x9a\xcb\xc5\x46\x3e\xa2\x25\xf4\xce\xa9\xd3\x15\x99\x0d\x12\x0f\x44\x77\x9a\x10\x46\x60\x33\x9d\xf5\x39\xce\x4a\x8e\xc2\xf4\x39\x8e\x14\xdc\x97\x6c\xb9\xa3\xc2\x76\x80\x98\x9f\xd4\x93\x6a\xcb\x31\xc6\x89\xe7\x0a\x9d\xc3\xf6\x31\x73\x61\x50\x15\x8c\xbc\x35\xae\x87\x45\xeb\x96\x1b\x6f\x1c\x8d\x76\x8d\x2e\xae\x9d\xf4\x13\x6e\xdf\xf9\x8c\x32\x59\x2d\xb9\xb0\x64\x55\x3e\xc8\x48\xdf\xc4\x77\x17\xd3\x28\x01\xdc\x9a\x9a\x22\xcc\x58\x59\xa2\x72\xbe\xf6\xd1\xa6\x97\xaf\x6c\x42\x03\x56\x5b\x5f\xdf\x77\x96\xd8\xcf\xb5\xb3\x24\x00\x54\xac\xbe\xd7\x46\x71\xb1\x7a\xb8\x7f\xe8\x75\x80\x34\x1e\xeb\xa7\xff\xec\xba\xdd\xfb\xd0\xa3\xe2\xe9\xfd\xc9\x6e\x88\x1f\xff\x63\x23\xb2\x0e\xc1\xf5\xc8\x9b\xd0\xf7\x8e\x22\xb8\x11\x61\xbc\x83\x68\x5b\xc5\xc4\x0a\xe1\x8a\xc3\xf5\x02\xd2\x90\xf5\x47\xe7\x2b\x6a\xf7\x17\x6d\x7b\xc5\xd3\x4f\xac\xc2\xe7\xe7\xc0\x02\xe5\x19\xb4\x48\x6f\xba\x42\x6b\xdb\x37\xf4\x98\x66\xd9\x7d\x82\x0a\x08\x3e\xe1\xb6\x23\x6f\x3a\x8b\x88\x24\x06\xbd\x04\xdd\x43\x7a\x36\xa4\xf5\xda\xf1\xfa\x88\xd3\x17\x92\x3b\x4b\x02\xce\x01\xbf\xd7\x43\x9c\x33\x2c\xc7\x50\x7d\xa2\xaf\xcf\x40\x0d\xe9\xb6\x58\x81\x9c\xb8\x54\x5f\xa4\x83\x65\x73\x1a\x59\x71\x06\x91\x34\xd3\xcc\x3c\x81\xdf\x7b\xd2\x77\xee\x67\x42\xb5\xff\x7d\xbd\x4c\xdb\xf6\x27\x49\xc3\xe0\x8a\xa7\x3e\xb7\xaf\xbb\x1a\xfd\xd4\x19\x4c\x87\x83\x5c\xd4\xd1\xa8\x04\x50\x29\xa9\x66\x56\xb7\x8b\xb0\x33\xdb\xa7\x14\x32\xa6\x23\x3e\xa1\xa0\x28\x88\x19\x4d\xe1\x85\x1d\xfb\xdd\x02\x04\x2f\x1d\x4a\xd0\x5f\xf0\xd2\x02\xd1\xb3\x67\x07\x6f\x9f\x87\x55\xd2\x97\x04\x38\x4b\x08\xc7\x31\xdc\xb6\xde\x87\x96\xe7\x8f\xd4\x4a\x7b\x64\xdb\x76\x7d\x65\xd0\x92\xed\x5d\x1e\x0b\x70\x65\x70\x54\x03\x27\x02\xe1\x8d\x65\xab\xc1\x46\x19\x4f\x76\x23\x9c\x37\x67\xc3\x9a\xe9\xd3\x40\xe0\xe3\x3a\x86\x43\x51\xd7\x3b\x5b\x52\xad\x3b\x1e\x45\x8f\x9d\x20\xb1\x54\x04\xff\x1b\x25\xe5\x41\xc6\xc8\x1c\x58\xc2\x4d\xdc\x74\xf2\xea\xf4\xc0\x6b\x36\x26\x3f\x6c\x4c\xd9\x51\x6d\xbd\xba\xdd\xbb\x4d\x90\xcc\xbf\x70\x42\x78\xe9\xfa\x1a\xfe\xa2\x58\xfd\xb7\xb2\xbc\x79\xca\xb0\x36\xb0\x55\xac\xd6\x6e\xbf\xed\xa8\x2c\x38\x96\x39\x9d\x38\x7c\x87\xde\x77\x1a\xab\xb6\xdb\xa4\x46\x4e\x53\xe9\x47\x9e\xe7\x25\x6e\x99\xf2\x47\xe3\x7f\xea\x70\x5a\xa6\xf3\x61\x5d\x97\x3b\xda\x6b\x68\x0f\x35\x04\x5f\x75\xc3\xed\x39\x01\x37\xa8\x76\x9d\xb2\x54\x71\xb4\x95\xe8\x6e\xfb\x98\xcf\xc1\x35\x25\xda\x45\x93\x68\x0b\xcb\x98\xa0\xa3\x14\x1d\x3e\x30\xa7\x79\xcb\x1d\x08\x52\xc4\x1d\xb1\xf0\x29\x2b\x9b\x1c\x73\x77\x46\x5e\x22\xc5\x40\x69\xd7\x98\xa7\x43\x46\xa6\xfb\xa8\x12\x98\xdc\x19\x66\x1a\x3d\x49\x60\xf2\x85\x8b\xd5\x64\xe6\x5b\xf1\x14\xe1\xfb\xa8\x7b\x1c\x03\x80\x11\x66\x92\x7d\x3c\x69\x9a\xba\x7e\xe7\xfc\xc5\x85\x7f\x7e\xbd\x88\xb7\x1e\x27\x42\xfb\x6c\xdd\x40\x1b\xc3\xd9\xfe\x76\x71\x31\x89\x3c\x36\xb9\x86\xf6\x39\x09\x93\xbd\x13\x2e\xac\x1b\x2e\x48\x97\x5f\x29\x22\xeb\x6a\x8b\xdb\x45\xd7\xfa\x56\xf3\x6b\x02\xf2\x91\xde\x87\xf8\xee\xf1\xe9\xe1\x2d\x7c\x27\x1f\xbd\x41\x6b\x26\x78\x36\x2d\x2a\x93\xde\xd5\x8a\x0b\x53\x4c\x27\x37\x01\xa4\x53\xf3\xf5\x5f\xf4\x6b\xc8\x25\x6a\x10\xd2\x00\x3e\x71\x6d\xde\x82\x46\x8c\x4d\xd0\x19\x49\xa7\x2b\x39\xa1\xb0\x66\xb3\xae\x91\xe5\x58\xa2\xc1\x69\x08\xc2\xbe\xed\xe5\xc1\x45\xb6\xcf\xa2\xe3\xf2\x5b\x58\xe3\x85\x05\x59\x2c\xa0\xc7\x5f\xa8\xc3\xd1\xc6\x0c\x8b\x28\x83\xe9\xe8\x90\xd9\xbe\x2c\x0f\x14\x08\x25\xf9\x0f\xb6\xc4\x12\xf3\xbd\x49\xdc\x95\x73\x85\x26\x98\x3a\x3e\xfb\x3b\x6f\x6f\xd7\x28\xba\xb7\x32\xf6\xb1\x47\x73\x6e\x4c\x5c\x01\xfa\x12\x69\xdc\x68\x70\x17\x59\xe6\xae\xc3\x3c\xa3\xd3\xaf\xe2\x99\xbf\x9d\x44\x51\xac\x79\xb6\xb6\x73\x35\x8a\xb1\x20\xfc\x71\xcf\x4f\x0f\xc7\x5d\xa9\xc2\x61\x6f\x98\x98\xed\xcc\xce\xd9\xc9\xb0\x8b\x8f\x34\xf6\x7e\xd7\xea\xe5\xf6\xdf\x37\xaf\x41\x5c\x89\xcf\xd5\xf2\xae\x30\x43\xbe\x71\xf7\x03\x9b\xe6\xc1\xe5\x2b\x85\x3b\xc4\x3d\x4e\x04\x63\xdf\x84\x8b\x4b\xd7\x15\x28\x54\x72\x68\x8e\x86\xf1\xd2\xde\x31\x42\x95\xb9\x8b\xb0\xbf\x1e\xb1\x92\x9b\x5d\x7a\xb2\xc5\xf4\xf2\x8f\x3b\xcd\x37\xf3\xfa\x67\x1f\xfa\x03\xf7\xa1\xde\xbc\x64\xfc\x48\x79\xbe\x2d\x79\xcf\xfd\xc2\xcd\xfa\x83\x31\xb5\xdb\x7c\x4f\x94\x1e\x0a\xa3\x76\x54\x2c\x05\x2f\x31\x87\x0f\x83\x4b\xdd\x99\xaa\x3c\x7e\x0d\x79\xd1\x71\xc2\xdd\xcc\x41\xfa\xc5\xfe\x0f\x4e\x14\x63\xcc\x4d\x75\x94\xd7\xb7\x9e\x30\xce\x02\x9e\xe0\xf0\xcf\x82\xff\xdf\x17\xfc\x86\xed\xfd\x78\xe6\x1b\x06\x65\x2c\x43\xc6\x98\x0e\xae\xee\xf7\x5c\x64\x0f\x6f\xa1\x4b\x3e\xc0\x2e\xa8\x12\x50\xe4\x53\x99\x40\xec\x04\x97\x00\x60\xa9\x71\x30\xc3\x5e\xb7\x4f\xc5\x93\xc0\x5f\x67\xf1\x9c\xfb\x1f\x1e\x60\xd1\x83\xef\xe8\x39\x16\x2a\x2c\x42\xe6\xfd\xa6\xf2\x13\x9a\x61\x63\x70\xb7\x18\xf7\x51\xf5\x78\x54\xc0\xb4\x96\x19\xb7\x9f\xef\x6d\xdb\xa0\x6a\x5e\xf1\x0d\x8a\xfd\xf6\xb6\x2f\x9f\xa8\x7a\xc6\xd6\xec\x3e\x2b\x42\x28\x85\x53\x84\xb8\x3a\x29\x42\x4a\xa7\x74\x0a\xb8\x91\x58\xfe\x92\xd6\xe3\x23\x3c\x7c\x81\x16\x3f\xcc\xf6\xf4\xdd\xb9\x54\xfa\x5f\x63\x88\x18\xbe\x12\xf6\x2b\xf2\xe9\x8f\x30\xe0\xbe\xdf\x9d\xa6\x6b\x74\x8d\x43\xbe\x92\xf0\xe7\x80\x73\x4b\xba\x1e\xe3\x98\x3a\xf8\x88\xb4\xe7\x0a\x16\x01\x6e\xe0\x94\x83\x54\x83\x55\x48\xfb\x73\xc9\xfe\x4e\xbf\x9c\x23\xa0\x60\x65\xb9\x64\xd9\xe3\x79\x06\xce\x05\xea\xdd\xe5\x29\xe8\xbb\xeb\x28\x67\x03\x7f\x75\x0c\xc6\xfe\x0a\x41\x8e\x58\xa8\xf7\x15\xee\xa8\x87\x86\x5f\xdf\xbe\xcd\x44\xbd\x55\x86\x24\xfa\xbf\x32\x9d\x5d\xb4\x6f\xa3\xfe\x07\xc4\x9e\x8f\x3c\xe0\x88\x8f\xfa\xf9\x1e\x37\xd2\x48\xc6\xbf\xdb\x49\x67\x58\x38\x62\xa5\x31\x1a\xce\xc6\xea\xcd\xe4\x79\x38\x34\xd3\x31\xe6\x06\x6e\xea\x78\x3c\xea\xa6\xff\x04\x00\x00\xff\xff\x41\x7e\xa5\xd7\x55\x1d\x00\x00") +var _svcEndpointsGotemplate = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5a\x6d\x6f\xdb\x38\x12\xfe\x9c\x00\xf9\x0f\xb3\x46\x0f\xb5\x0a\x55\xde\xfb\x9a\x22\x1f\xee\xda\xec\xb6\xc0\xf5\x05\x9b\xde\xf5\x43\x51\x14\xb4\x34\xb6\x88\x48\xa4\x96\xa4\x9c\xf8\x0c\xff\xf7\xc3\xf0\x45\xa6\x2c\xf9\x25\xbb\xc0\xe2\xb0\xd8\x00\x85\x6d\x89\x1c\xce\x3c\xcf\x33\xc3\xa1\xd4\xd9\x0c\x5e\xcb\x02\x61\x89\x02\x15\x33\x58\xc0\x7c\x0d\x46\xb5\x5a\x67\xf0\xe6\x23\x7c\xf8\xf8\x19\x6e\xdf\xbc\xfb\x9c\x5d\x5d\xce\x66\xf0\x0b\xaa\x56\x08\x2e\x96\x6e\x04\x3c\xf0\xaa\x02\xb9\x42\xf5\xa0\xb8\x41\x30\x25\xd7\xb0\xe0\x15\xba\xd1\xff\x41\xa5\xb9\x14\xd7\xb0\xd9\x64\xfe\xfb\x76\x1b\xdf\x81\x37\xcc\x60\x7c\x9b\x7e\xd3\x90\xab\xcb\x86\xe5\xf7\x6c\x89\xa0\x57\x39\xfd\x9c\xcd\xe0\x73\x30\x0e\xb9\x14\x86\x71\xa1\xa1\x46\x53\xca\x42\x83\x91\x50\xb3\x7b\x04\x2e\x0a\xbe\xe2\x45\xcb\x2a\x40\x51\x34\x92\x0b\xa3\x61\xa1\x64\x0d\x1a\xd5\x8a\xe7\xa8\x53\x6b\x4a\xe1\xaf\x2d\x6a\x03\x4c\x14\xa0\x50\x37\x52\x68\x04\xb3\x6e\xd0\x9a\xa2\xb1\x14\x8b\xd4\xb8\x33\x93\x02\xd3\xf0\x80\x55\x45\x9f\x28\x72\x59\xa0\xd2\x64\xc0\x1a\x2c\xd0\x5f\x58\x48\xe5\x67\x5a\x73\xa9\xbd\xc0\x08\xa4\x05\xc8\x56\x81\x6e\x9b\x46\x2a\x42\xd9\x28\x26\x34\x7d\xa7\xf5\x38\xab\xf8\x7f\x99\xe1\x52\x58\x73\x0b\xa9\x6a\x66\x74\x46\x91\xf3\xda\x0e\x9a\x5e\x5d\x5e\x4c\x16\xb5\x99\xd0\x27\x01\x80\x8f\xee\xbb\x40\x33\x2b\x8d\x69\xe8\x07\x7d\xee\xec\x4e\x96\xdc\x94\xed\x3c\xcb\x65\x3d\x5b\xca\x97\xf7\xdc\xcc\xe8\x5f\x37\x20\x4c\x23\x2b\xe3\x43\x43\xf4\x6e\x50\x33\x87\xc9\x66\x93\x7d\xfa\xe7\x3b\xeb\xd2\x27\x66\x4a\x78\xb9\xdd\x4e\xae\x2e\x13\x4f\xd1\x6d\x07\x7a\x2e\xab\x0a\x73\xa3\x43\xec\xa6\x8c\xb0\x04\x53\x32\x03\xb9\xac\x1b\x02\x8a\x09\x60\x45\x11\x18\xca\xe0\x9d\x79\xae\xad\xb5\x1a\x99\x30\x44\xc8\x1c\xa1\xd5\x58\x10\xf2\x0c\x4a\xac\x1a\x54\xa0\x8d\x6a\x73\x93\xd2\x6d\xbf\xd6\xf8\x52\x5c\x18\x09\xcc\xda\xd3\x5c\x2c\x2b\x84\x86\x29\x56\xa3\x41\x65\x45\x6a\xef\xbc\x13\xc0\x1c\xed\x2a\x05\x6e\x9e\x6b\x5a\x6f\xd1\x56\x96\xbd\x45\x2b\x72\x62\xc6\xbb\x2d\x90\xc8\x93\x20\x1b\x9b\x2e\x20\x69\x6e\x83\xea\x65\x58\xd3\x5a\x9c\x33\xcd\x75\x06\x3f\x49\x05\xf8\xc8\xea\xa6\xc2\x14\xd6\xb2\x85\x9a\x2f\x4b\x03\x0d\xd3\xa4\x9d\x08\x2f\x72\xb2\x5b\xc9\x2d\xd4\x28\x59\xb4\x39\x3a\x2c\x98\x00\x62\x2b\x7b\xcb\x44\x51\x91\x97\x0f\xdc\x94\x80\x2c\x2f\x7d\x12\xc0\x34\xac\x9f\xc0\x03\x57\x58\x40\xdb\x38\xab\xba\xc1\x9c\x2f\x78\x0e\x0d\x33\x65\x06\xd3\x77\xce\x43\xae\x69\x85\x39\x9b\x57\x6b\x60\x50\x73\x6d\x5c\x06\x41\x81\x9a\x2f\x05\xcd\xe5\x62\x25\xef\xd1\x02\x7a\xe7\xd8\xe9\x32\xce\x3a\x89\x7b\xa4\x3b\x4e\xc8\x46\x40\x33\x4b\xfa\x18\xe7\x15\x47\x61\xfa\x18\x47\x0c\xee\xf2\xb7\x5a\x53\x96\x3b\x83\x58\x1c\xe5\x93\x12\xcd\x21\xc6\x09\xe7\x1a\x9d\xc2\x76\x3e\x73\x61\x50\x2d\x18\x69\x6b\x9c\x0f\x6b\xad\x5b\x6e\xbc\x8a\xb4\xda\x55\xbd\x38\x77\xb2\x0f\xf8\xf0\xda\x47\x94\xcb\x7a\xce\x85\x05\xab\xf6\x4e\x46\xfc\xa6\xbe\xd4\x98\x56\x09\xe0\x56\xd4\xe4\x61\xce\xaa\x0a\x95\xd3\xb5\xf7\x36\xbb\xba\xb4\x01\x0d\x50\xdd\xf8\xfc\xbe\xb3\xc0\x7e\x6c\x9c\x24\x01\xa0\x66\xcd\x57\x6d\x14\x17\xcb\x6f\x5f\xbf\xf5\x2a\x40\x16\x8f\xf5\xd3\x7f\x71\xa5\xef\x4d\x28\x58\xf1\xf4\xfe\x64\x37\xc4\x8f\xff\xa9\x15\x79\x67\xc1\x15\xcc\xdb\x50\x04\x0f\x5a\x70\x23\xc2\xf8\xc8\x84\x57\x31\x5d\xb1\x21\xc4\x26\x28\x09\xa6\x16\xdd\x30\xf1\x0b\xed\x2d\x2a\x85\x17\xfe\xaa\x75\x28\xb9\xba\xdc\x6c\x14\x13\x4b\x84\x67\x1c\xae\x6f\x20\x0b\x00\xbe\x77\x12\xa5\x6d\xe4\x62\xb3\x79\xc6\xb3\x0f\xac\xc6\xed\x36\x00\x4a\xcb\x05\x5a\xb3\xdb\x2e\x67\x37\x9b\x97\x74\x99\x66\xd9\xfd\x87\xdc\x80\x0f\xf8\xd0\xf1\x30\x4d\x22\x4e\x88\x0c\xcf\x66\x77\x91\xae\x0d\x19\xba\x76\xe1\xdd\xe3\xf4\x4c\x9e\x92\x34\xd8\xd9\xa3\xea\x7a\x68\xe7\x04\x61\xb1\xa9\x3e\x67\xd7\x27\x4c\x0d\x99\xdb\xd9\x8a\xc9\xbb\x86\xb1\xf0\xce\xa5\xd0\xda\x0c\x80\xc7\x95\xe4\x2c\x6e\x2d\x43\xd3\x28\x53\x12\x88\xe8\x9e\xe6\xe6\x11\xfc\x3e\x99\xbd\x76\x9f\x29\x95\xa6\x17\xcd\x3c\xdb\x6c\x7e\x96\x34\x0c\x9e\xf1\xe0\xcc\xe7\x75\x83\x7e\x6a\x02\xd3\xe1\x20\x17\x47\x34\x2a\x05\x54\x4a\xaa\xc4\x6a\xe1\x22\x74\x11\xf6\x2a\xb9\x8c\xd9\x88\xf6\xc8\x29\x72\x22\xa1\x29\x7c\x61\xc7\xfe\x70\x03\x82\x57\xce\x4a\xd0\x94\xe0\x95\x35\x44\xd7\xb6\xce\xbc\xbd\x1e\x56\xc9\xce\x71\x30\x49\xc9\x8e\x43\x78\xb3\xf1\xda\xb6\x38\xbf\xa7\x4a\xdf\x03\xdb\xee\x26\xcf\x0c\x5a\xb0\x7d\xe6\xc4\x04\x3c\x33\x38\xca\x81\x23\x81\xec\x8d\x45\xab\xc1\x7a\x19\x4f\x76\x23\x9c\xde\x93\x61\x1e\xf6\x61\xb0\x3a\x1a\xe5\x31\x34\x70\x5d\x69\xdf\x10\x6b\x5d\x2b\x17\x5d\x76\x84\xc4\x54\x91\xf9\x5f\x29\x28\x6f\x64\x0c\xcc\x81\x24\xdc\xc4\x55\x47\xaf\xce\xf6\xb4\x66\x7d\xf2\xc3\xc6\x98\x1d\xe5\xd6\xb3\xdb\xdd\x5b\x05\xca\xfc\x0d\x47\x84\xa7\xae\xcf\xe1\x17\xc5\x9a\x7f\x54\xd5\xed\x63\x8e\x8d\x81\x07\xc5\x1a\xed\xda\x81\x0e\xca\x05\xc7\xaa\xa0\x86\xc8\x6f\x20\xbb\xea\x65\xd9\x76\x7b\xe8\x48\xb3\x97\xbd\xe7\x45\x51\xe1\x03\x53\xbe\x8d\xff\xb7\x0e\x9d\x3d\xf5\xb2\x4d\x53\xad\x69\x2b\xa4\x2d\xde\x90\xf9\xba\x1b\x6e\xdb\x18\x5c\xa1\x5a\x77\xcc\x52\xc6\xd1\x4e\xa7\xbb\xdd\x6d\x36\x03\x57\xe8\x68\x93\x4f\xa3\x1d\x36\x67\x82\x3a\x3d\xea\x8d\xb0\xa0\x79\xf3\x35\x08\x62\xc4\x75\x80\xf8\x98\x57\x6d\x81\x85\xeb\xe7\xe7\x48\x3e\x50\xd8\x0d\x16\xd9\x10\x91\xe9\xce\xab\x14\x26\x77\x86\x99\x56\x4f\x52\x98\x7c\xe2\x62\x39\x49\x7c\x79\x9f\x22\xbc\x88\xaa\xc7\x21\x03\x30\x82\x4c\xba\xf3\x27\xcb\x32\x57\xf7\x9c\xbe\xb8\xf0\xd7\xaf\x6f\xe2\x6d\xcd\x91\xb0\xd9\x5a\x35\xd0\x66\x73\xb2\xbe\x5d\x5c\x4c\x22\x8d\x4d\xae\x61\xb3\x4d\xc3\x64\xaf\x84\x0b\xab\x86\x0b\xe2\xe5\x3b\x79\x64\x55\x6d\xed\x76\xde\x6d\x7c\xa9\xf9\x9e\x82\xbc\xa7\xfb\xc1\xbf\xaf\xf8\xf8\xed\x15\xfc\x20\xef\xbd\x40\x1b\x26\x78\x3e\x5d\xd4\x26\xbb\x6b\x14\x17\x66\x31\x9d\xdc\x06\x23\x1d\x9b\xcf\xff\xa6\x9f\x43\x21\x51\x83\x90\x06\xf0\x91\x6b\xf3\x0a\x34\x62\x2c\x82\x4e\x48\x3a\x5b\xca\x09\xb9\x95\x24\x5d\x21\x2b\xb0\x42\x83\xd3\xe0\x84\xbd\xdb\x8b\x83\x8b\x7c\x17\x45\x87\xe5\x53\x50\xe3\x0b\x6b\xe4\xe6\x06\x7a\xf8\x85\x3c\x1c\x2d\xcc\x70\x13\x45\x30\x1d\x1d\x92\xec\xd2\x72\x8f\x81\x90\x92\xff\x62\x73\xac\xb0\xd8\x89\xc4\x1d\x8f\x97\x68\x82\xa8\xe3\xa3\x89\xd3\xf6\x43\x89\xa2\xbb\x2b\x63\x1d\x7b\x6b\x4e\x8d\xa9\x4b\x40\x9f\x22\xad\x1b\x0d\xee\xd0\xcd\xdc\xd1\x9d\xe7\xd4\x9c\x2b\x9e\xfb\xc3\x53\xe4\x45\xc9\xf3\xd2\xce\xd5\x28\xc6\x9c\xf0\xdd\xa8\x9f\x1e\xba\x71\xa9\x42\x2f\x3a\x0c\xcc\x56\x66\xa7\xec\x74\x58\xc5\x47\x0a\x7b\xbf\x6a\xf5\x62\xfb\xed\xc5\x6b\xe0\x57\xea\x63\xb5\xb8\x2b\xcc\x91\xaf\xdc\xf1\xc5\x86\xb9\x77\x36\xcc\xe0\x0e\x71\x67\x27\x32\x63\xef\x84\x73\x55\x57\x15\xc8\x55\x52\x68\x81\x86\xf1\xca\x1e\x81\x42\x96\xb9\x43\xbb\x3f\xbd\xb1\x8a\x9b\x75\x76\xb4\xc4\xf4\xe2\x8f\x2b\xcd\x93\x71\xfd\xab\x0e\xfd\x89\xeb\x50\x6f\x5e\x3a\xde\x52\x9e\x2e\x4b\x5e\x73\x5f\xb8\x29\xdf\x1a\xd3\xb8\xcd\xf7\x48\xea\xa1\x30\x6a\x4d\xc9\xb2\xe0\x15\x16\xf0\x76\x70\xe6\x3c\x91\x95\x87\x8f\x36\x67\xb5\x13\xee\xc1\x01\x48\xbf\xd8\xff\x41\x47\x31\x86\xdc\x54\x47\x71\x3d\xb5\xc3\x38\x69\xf0\x08\x86\x7f\x25\xfc\x1f\x9f\xf0\x2b\xb6\xd3\xe3\x89\x47\x2c\x14\xb1\x0c\x11\x63\x36\x78\x1c\xf0\x95\x8b\xfc\xdb\x2b\xe8\x82\x0f\x66\x6f\x28\x13\x50\x14\x53\x99\x42\xac\x04\x17\x00\x60\xa5\x71\x30\xc3\x1e\xbb\x8f\xf9\x93\xc2\xdf\x93\x78\xce\xd7\x1f\xbf\xc1\x4d\xcf\x7c\x07\xcf\x21\x57\xe1\x26\x44\x3e\x2c\x2a\x7d\x19\xfb\x5a\x22\x05\xfe\x71\xa5\x64\xe8\xc5\x81\xbc\x3c\x92\x8f\x7b\xf3\x3b\xc5\x85\x5d\xf8\xcc\xbc\xb4\x39\x08\x00\x70\xbe\x58\x68\xf4\x29\xb9\x04\x77\x3a\xcd\x80\xff\x3b\x43\x38\x34\x6c\x27\x9d\xe1\xc4\x63\xde\x45\x13\xe8\xaf\x87\xea\xee\xd6\xd6\x2f\xe2\x3e\x8e\xfa\x1f\x0b\x29\x88\xe8\x67\x34\x43\x49\xb8\xa3\xb0\x7b\x71\x70\xd8\x3f\x60\x5a\xcb\x9c\xdb\xf7\x55\x56\x30\xb4\x25\x2c\xf9\x0a\xc5\xae\x47\xda\x71\x1e\x51\x3e\xb6\xe6\x3e\xe9\xc9\x51\x68\x5c\xb1\x5d\x84\x70\x9e\xc4\x5e\x77\xd2\xef\x25\x55\xb8\x78\x46\x42\xff\x98\xec\xe0\xbb\x73\xa1\xf4\x1f\x13\x12\x30\x7c\x29\xec\x9b\x92\xe3\x4f\x07\xc1\x3d\xa3\x3e\x0e\xd7\xe8\x1a\xc3\x24\xf1\xef\xbf\x4e\x2d\xe9\x36\x2a\x87\xd4\xde\xd3\xcd\x9e\x52\xbc\xb9\x81\x52\xf6\x42\x0d\x52\x21\xee\x4f\x05\xfb\x3b\xf5\x72\x0a\x80\x05\xab\xaa\x39\xcb\xef\x4f\x23\x70\xca\x51\xaf\x2e\x0f\x41\x5f\x5d\x07\x31\x1b\xe8\xab\x43\x30\xd6\x57\x70\x72\x44\x42\xbd\xc7\xc3\x07\x35\x34\x7c\x2c\xfc\x34\x11\xf5\x56\x19\x82\xe8\x5f\xab\x9e\x5c\xb4\x2f\xa3\xfe\x93\xed\x9e\x8e\xbc\xc1\x11\x1d\xf5\xe3\x3d\x2c\xa4\x91\x88\x7f\xb7\x92\x4e\xa0\x70\x40\x4a\x63\x30\x9c\xf4\xd5\x8b\xc9\xe3\xb0\x2f\xa6\x43\xc8\x0d\xd4\xd4\xe1\x78\x96\x9a\xa2\x17\x04\x91\x92\xf2\x56\x1b\x59\x5b\x97\x21\x1e\xd1\x17\x10\x70\xa1\x0d\x32\x7b\xf4\xf7\xaf\xdc\x4a\x84\x02\x17\xac\xad\x0c\x35\x17\x47\x15\x16\xd9\x1d\xe2\x5a\xba\x9b\x70\xf6\xdb\x89\x48\x65\xf1\x3b\x8f\x9e\xc2\xbc\xd1\x81\xc2\xe2\x08\xf7\xd5\xd5\x0b\xdf\xfd\x87\x81\x27\x29\xe8\x48\x94\xc9\xd9\xd1\x05\x69\x94\xe1\x85\x72\x2c\x8d\xf1\x70\x07\xb2\xe8\x82\x8f\x65\x61\x1f\x60\x07\x34\xde\x32\xbd\x8f\x46\x5e\x62\x7e\xaf\xa9\xf1\x39\xac\x09\xae\x7f\x73\x96\x0d\x57\x1c\x62\x34\x97\xd2\x3d\x96\xff\x7e\x4e\xd8\xbb\xd0\xa4\xd3\xfa\xff\x02\x00\x00\xff\xff\xd0\x9a\xb5\x7d\x32\x23\x00\x00") func svcEndpointsGotemplateBytes() ([]byte, error) { return bindataRead( @@ -213,8 +213,8 @@ func svcEndpointsGotemplate() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "svc/endpoints.gotemplate", size: 7509, mode: os.FileMode(0644), modTime: time.Unix(1464111000, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4d, 0x55, 0x6e, 0xf, 0x6d, 0x7, 0xc3, 0x3, 0xa7, 0x1b, 0x5d, 0x90, 0x75, 0xbd, 0x16, 0x61, 0x12, 0x45, 0x49, 0x99, 0x96, 0xab, 0xe, 0xd3, 0xd4, 0x4b, 0xd7, 0x5c, 0xe0, 0x40, 0xec, 0xc2}} + info := bindataFileInfo{name: "svc/endpoints.gotemplate", size: 9010, mode: os.FileMode(0644), modTime: time.Unix(1464111000, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3c, 0x4e, 0x28, 0xbe, 0xaf, 0xc3, 0xf9, 0x33, 0x26, 0x9a, 0x1b, 0xda, 0xb, 0x90, 0x37, 0x55, 0x1b, 0x9f, 0x29, 0x45, 0x3e, 0x32, 0x92, 0x7d, 0x58, 0x11, 0x9a, 0x58, 0xa8, 0xd, 0xff, 0x77}} return a, nil } From 72999ebd2fc0cf37d94c6d7876249b1587fac368 Mon Sep 17 00:00:00 2001 From: Nick Godzieba Date: Wed, 17 Mar 2021 09:36:51 +0100 Subject: [PATCH 7/8] added support for modifiers of path parameters --- gengokit/httptransport/httptransport.go | 1 + svcdef/consolidate_http.go | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/gengokit/httptransport/httptransport.go b/gengokit/httptransport/httptransport.go index b0d920f4..d5cbda7e 100644 --- a/gengokit/httptransport/httptransport.go +++ b/gengokit/httptransport/httptransport.go @@ -252,6 +252,7 @@ func (b *Binding) PathSections() []string { for _, part := range parts { if len(part) > 2 && part[0] == '{' && part[len(part)-1] == '}' { name := RemoveBraces(part) + name = strings.Split(name, ":")[0] if _, ok := isEnum[gogen.CamelCase(name)]; ok { convert := fmt.Sprintf("fmt.Sprintf(\"%%d\", req.%v)", gogen.CamelCase(name)) rv = append(rv, convert) diff --git a/svcdef/consolidate_http.go b/svcdef/consolidate_http.go index 84efe384..26041b33 100644 --- a/svcdef/consolidate_http.go +++ b/svcdef/consolidate_http.go @@ -139,7 +139,8 @@ func paramLocation(field *Field, binding *svcparse.HTTPBinding) string { for _, param := range pathParams { // Have to CamelCase the data from the parser since it may be lowercase // while the name from the Go file will be CamelCased - if gogen.CamelCase(strings.Split(param, ".")[0]) == field.Name { + if gogen.CamelCase(strings.Split(param, ".")[0]) == field.Name || + gogen.CamelCase(strings.Split(param, ":")[0]) == field.Name { return "path" } } From b04d3c5d51b03f2deeaf1a51cb7aeaab398095f6 Mon Sep 17 00:00:00 2001 From: obad2015 Date: Mon, 3 Apr 2023 16:00:40 +0200 Subject: [PATCH 8/8] Disable go mod while fetching a package that doesn't support it --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 1ca785e3..1ed24694 100644 --- a/Makefile +++ b/Makefile @@ -12,11 +12,11 @@ dependencies: go get -u github.com/gogo/protobuf/protoc-gen-gogo@21df5aa0e680850681b8643f0024f92d3b09930c go get -u github.com/gogo/protobuf/protoc-gen-gogofaster@21df5aa0e680850681b8643f0024f92d3b09930c go get -u github.com/gogo/protobuf/proto@21df5aa0e680850681b8643f0024f92d3b09930c - go get -u github.com/kevinburke/go-bindata/go-bindata + GO111MODULE=off go get -u github.com/kevinburke/go-bindata/go-bindata # Generate go files containing the all template files in []byte form gobindata: - go generate github.com/metaverse/truss/gengokit/template + GO111MODULE=off go generate github.com/metaverse/truss/gengokit/template # Install truss truss: gobindata