├── .gitignore ├── LICENSE ├── README.md ├── docker-compose.yml ├── graphql-gateway ├── .gitignore ├── Dockerfile ├── Gopkg.lock ├── Gopkg.toml ├── client │ ├── grpc.go │ └── product.go ├── graph │ ├── generated.go │ ├── graph.go │ └── models_gen.go ├── main.go ├── pb │ └── product.pb.go ├── runner.conf ├── schema.graphql └── vendor │ ├── github.com │ ├── golang │ │ └── protobuf │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── Make.protobuf │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── _conformance │ │ │ ├── Makefile │ │ │ ├── conformance.go │ │ │ └── conformance_proto │ │ │ │ ├── conformance.pb.go │ │ │ │ └── conformance.proto │ │ │ ├── descriptor │ │ │ ├── descriptor.go │ │ │ └── descriptor_test.go │ │ │ ├── jsonpb │ │ │ ├── jsonpb.go │ │ │ ├── jsonpb_test.go │ │ │ └── jsonpb_test_proto │ │ │ │ ├── Makefile │ │ │ │ ├── more_test_objects.pb.go │ │ │ │ ├── more_test_objects.proto │ │ │ │ ├── test_objects.pb.go │ │ │ │ └── test_objects.proto │ │ │ ├── proto │ │ │ ├── Makefile │ │ │ ├── all_test.go │ │ │ ├── any_test.go │ │ │ ├── clone.go │ │ │ ├── clone_test.go │ │ │ ├── decode.go │ │ │ ├── decode_test.go │ │ │ ├── discard.go │ │ │ ├── encode.go │ │ │ ├── encode_test.go │ │ │ ├── equal.go │ │ │ ├── equal_test.go │ │ │ ├── extensions.go │ │ │ ├── extensions_test.go │ │ │ ├── lib.go │ │ │ ├── map_test.go │ │ │ ├── message_set.go │ │ │ ├── message_set_test.go │ │ │ ├── pointer_reflect.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── properties.go │ │ │ ├── proto3_proto │ │ │ │ ├── proto3.pb.go │ │ │ │ └── proto3.proto │ │ │ ├── proto3_test.go │ │ │ ├── size2_test.go │ │ │ ├── size_test.go │ │ │ ├── testdata │ │ │ │ ├── Makefile │ │ │ │ ├── golden_test.go │ │ │ │ ├── test.pb.go │ │ │ │ └── test.proto │ │ │ ├── text.go │ │ │ ├── text_parser.go │ │ │ ├── text_parser_test.go │ │ │ └── text_test.go │ │ │ ├── protoc-gen-go │ │ │ ├── Makefile │ │ │ ├── descriptor │ │ │ │ ├── Makefile │ │ │ │ ├── descriptor.pb.go │ │ │ │ └── descriptor.proto │ │ │ ├── doc.go │ │ │ ├── generator │ │ │ │ ├── Makefile │ │ │ │ ├── generator.go │ │ │ │ └── name_test.go │ │ │ ├── grpc │ │ │ │ └── grpc.go │ │ │ ├── link_grpc.go │ │ │ ├── main.go │ │ │ ├── plugin │ │ │ │ ├── Makefile │ │ │ │ ├── plugin.pb.go │ │ │ │ ├── plugin.pb.golden │ │ │ │ └── plugin.proto │ │ │ └── testdata │ │ │ │ ├── Makefile │ │ │ │ ├── extension_base.proto │ │ │ │ ├── extension_extra.proto │ │ │ │ ├── extension_test.go │ │ │ │ ├── extension_user.proto │ │ │ │ ├── grpc.proto │ │ │ │ ├── imp.pb.go.golden │ │ │ │ ├── imp.proto │ │ │ │ ├── imp2.proto │ │ │ │ ├── imp3.proto │ │ │ │ ├── main_test.go │ │ │ │ ├── multi │ │ │ │ ├── multi1.proto │ │ │ │ ├── multi2.proto │ │ │ │ └── multi3.proto │ │ │ │ ├── my_test │ │ │ │ ├── test.pb.go │ │ │ │ ├── test.pb.go.golden │ │ │ │ └── test.proto │ │ │ │ └── proto3.proto │ │ │ └── ptypes │ │ │ ├── any.go │ │ │ ├── any │ │ │ ├── any.pb.go │ │ │ └── any.proto │ │ │ ├── any_test.go │ │ │ ├── doc.go │ │ │ ├── duration.go │ │ │ ├── duration │ │ │ ├── duration.pb.go │ │ │ └── duration.proto │ │ │ ├── duration_test.go │ │ │ ├── empty │ │ │ ├── empty.pb.go │ │ │ └── empty.proto │ │ │ ├── regen.sh │ │ │ ├── struct │ │ │ ├── struct.pb.go │ │ │ └── struct.proto │ │ │ ├── timestamp.go │ │ │ ├── timestamp │ │ │ ├── timestamp.pb.go │ │ │ └── timestamp.proto │ │ │ ├── timestamp_test.go │ │ │ └── wrappers │ │ │ ├── wrappers.pb.go │ │ │ └── wrappers.proto │ ├── gorilla │ │ └── websocket │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── client.go │ │ │ ├── client_clone.go │ │ │ ├── client_clone_legacy.go │ │ │ ├── client_server_test.go │ │ │ ├── client_test.go │ │ │ ├── compression.go │ │ │ ├── compression_test.go │ │ │ ├── conn.go │ │ │ ├── conn_broadcast_test.go │ │ │ ├── conn_read.go │ │ │ ├── conn_read_legacy.go │ │ │ ├── conn_test.go │ │ │ ├── doc.go │ │ │ ├── example_test.go │ │ │ ├── examples │ │ │ ├── autobahn │ │ │ │ ├── README.md │ │ │ │ ├── fuzzingclient.json │ │ │ │ └── server.go │ │ │ ├── chat │ │ │ │ ├── README.md │ │ │ │ ├── client.go │ │ │ │ ├── home.html │ │ │ │ ├── hub.go │ │ │ │ └── main.go │ │ │ ├── command │ │ │ │ ├── README.md │ │ │ │ ├── home.html │ │ │ │ └── main.go │ │ │ ├── echo │ │ │ │ ├── README.md │ │ │ │ ├── client.go │ │ │ │ └── server.go │ │ │ └── filewatch │ │ │ │ ├── README.md │ │ │ │ └── main.go │ │ │ ├── json.go │ │ │ ├── json_test.go │ │ │ ├── mask.go │ │ │ ├── mask_safe.go │ │ │ ├── mask_test.go │ │ │ ├── prepared.go │ │ │ ├── prepared_test.go │ │ │ ├── server.go │ │ │ ├── server_test.go │ │ │ ├── util.go │ │ │ └── util_test.go │ └── vektah │ │ └── gqlgen │ │ ├── .circleci │ │ └── config.yml │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .github │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── .gometalinter.json │ │ ├── Gopkg.lock │ │ ├── Gopkg.toml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── client │ │ ├── client.go │ │ ├── client_test.go │ │ ├── readme.md │ │ └── websocket.go │ │ ├── codegen │ │ ├── build.go │ │ ├── import.go │ │ ├── import_build.go │ │ ├── input_build.go │ │ ├── interface.go │ │ ├── interface_build.go │ │ ├── model.go │ │ ├── models_build.go │ │ ├── object.go │ │ ├── object_build.go │ │ ├── templates │ │ │ ├── args.gotpl │ │ │ ├── data.go │ │ │ ├── field.gotpl │ │ │ ├── generated.gotpl │ │ │ ├── inliner │ │ │ │ └── inliner.go │ │ │ ├── input.gotpl │ │ │ ├── interface.gotpl │ │ │ ├── models.gotpl │ │ │ ├── object.gotpl │ │ │ └── templates.go │ │ ├── type.go │ │ ├── type_build.go │ │ └── util.go │ │ ├── docs │ │ ├── config.yml │ │ ├── content │ │ │ ├── _index.md │ │ │ ├── reference │ │ │ │ └── scalars.md │ │ │ └── tutorial │ │ │ │ └── getting-started.md │ │ ├── layouts │ │ │ ├── 404.html │ │ │ ├── _default │ │ │ │ ├── baseof.html │ │ │ │ └── single.html │ │ │ ├── index.html │ │ │ └── partials │ │ │ │ └── sidebar.html │ │ └── static │ │ │ ├── favicon.ico │ │ │ ├── main.css │ │ │ └── syntax.css │ │ ├── example │ │ ├── chat │ │ │ ├── .gitignore │ │ │ ├── chat_test.go │ │ │ ├── generated.go │ │ │ ├── models_gen.go │ │ │ ├── package.json │ │ │ ├── public │ │ │ │ └── index.html │ │ │ ├── readme.md │ │ │ ├── resolvers.go │ │ │ ├── schema.graphql │ │ │ ├── server │ │ │ │ └── server.go │ │ │ ├── src │ │ │ │ ├── App.js │ │ │ │ ├── Room.js │ │ │ │ └── index.js │ │ │ └── types.json │ │ ├── dataloader │ │ │ ├── addressloader_gen.go │ │ │ ├── dataloader_test.go │ │ │ ├── dataloaders.go │ │ │ ├── generated.go │ │ │ ├── itemsliceloader_gen.go │ │ │ ├── models_gen.go │ │ │ ├── ordersliceloader_gen.go │ │ │ ├── readme.md │ │ │ ├── resolvers.go │ │ │ ├── schema.graphql │ │ │ └── server │ │ │ │ └── server.go │ │ ├── readme.md │ │ ├── scalars │ │ │ ├── generated.go │ │ │ ├── model.go │ │ │ ├── resolvers.go │ │ │ ├── scalar_test.go │ │ │ ├── schema.graphql │ │ │ ├── server │ │ │ │ └── server.go │ │ │ └── types.json │ │ ├── starwars │ │ │ ├── generated.go │ │ │ ├── model.go │ │ │ ├── models_gen.go │ │ │ ├── readme.md │ │ │ ├── resolvers.go │ │ │ ├── schema.graphql │ │ │ ├── server │ │ │ │ └── server.go │ │ │ ├── starwars_test.go │ │ │ └── types.json │ │ └── todo │ │ │ ├── generated.go │ │ │ ├── models_gen.go │ │ │ ├── readme.md │ │ │ ├── schema.graphql │ │ │ ├── server │ │ │ └── server.go │ │ │ ├── todo.go │ │ │ └── todo_test.go │ │ ├── graphql │ │ ├── bool.go │ │ ├── defer.go │ │ ├── defer_test.go │ │ ├── error.go │ │ ├── exec.go │ │ ├── float.go │ │ ├── id.go │ │ ├── int.go │ │ ├── jsonw.go │ │ ├── jsonw_test.go │ │ ├── map.go │ │ ├── oneshot.go │ │ ├── recovery.go │ │ ├── response.go │ │ ├── string.go │ │ └── time.go │ │ ├── handler │ │ ├── graphql.go │ │ ├── graphql_test.go │ │ ├── playground.go │ │ ├── stub.go │ │ ├── websocket.go │ │ └── websocket_test.go │ │ ├── main.go │ │ ├── neelance │ │ ├── LICENSE │ │ ├── common │ │ │ ├── directive.go │ │ │ ├── lexer.go │ │ │ ├── literals.go │ │ │ ├── types.go │ │ │ └── values.go │ │ ├── errors │ │ │ └── errors.go │ │ ├── introspection │ │ │ ├── introspection.go │ │ │ └── query.go │ │ ├── query │ │ │ └── query.go │ │ ├── readme.md │ │ ├── schema │ │ │ ├── meta.go │ │ │ └── schema.go │ │ ├── tests │ │ │ ├── all_test.go │ │ │ ├── empty.go │ │ │ └── testdata │ │ │ │ ├── LICENSE │ │ │ │ ├── export.js │ │ │ │ ├── gen.go │ │ │ │ └── tests.json │ │ └── validation │ │ │ ├── suggestion.go │ │ │ └── validation.go │ │ └── test │ │ ├── generated.go │ │ ├── introspection │ │ └── it.go │ │ ├── models.go │ │ ├── models_gen.go │ │ ├── resolvers_test.go │ │ ├── schema.graphql │ │ └── types.json │ ├── golang.org │ └── x │ │ ├── net │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README.md │ │ ├── bpf │ │ │ ├── asm.go │ │ │ ├── constants.go │ │ │ ├── doc.go │ │ │ ├── instructions.go │ │ │ ├── instructions_test.go │ │ │ ├── setter.go │ │ │ ├── testdata │ │ │ │ ├── all_instructions.bpf │ │ │ │ └── all_instructions.txt │ │ │ ├── vm.go │ │ │ ├── vm_aluop_test.go │ │ │ ├── vm_bpf_test.go │ │ │ ├── vm_extension_test.go │ │ │ ├── vm_instructions.go │ │ │ ├── vm_jump_test.go │ │ │ ├── vm_load_test.go │ │ │ ├── vm_ret_test.go │ │ │ ├── vm_scratch_test.go │ │ │ └── vm_test.go │ │ ├── codereview.cfg │ │ ├── context │ │ │ ├── context.go │ │ │ ├── context_test.go │ │ │ ├── ctxhttp │ │ │ │ ├── ctxhttp.go │ │ │ │ ├── ctxhttp_17_test.go │ │ │ │ ├── ctxhttp_pre17.go │ │ │ │ ├── ctxhttp_pre17_test.go │ │ │ │ └── ctxhttp_test.go │ │ │ ├── go17.go │ │ │ ├── go19.go │ │ │ ├── pre_go17.go │ │ │ ├── pre_go19.go │ │ │ └── withtimeout_test.go │ │ ├── dict │ │ │ └── dict.go │ │ ├── dns │ │ │ └── dnsmessage │ │ │ │ ├── example_test.go │ │ │ │ ├── message.go │ │ │ │ └── message_test.go │ │ ├── html │ │ │ ├── atom │ │ │ │ ├── atom.go │ │ │ │ ├── atom_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── table.go │ │ │ │ └── table_test.go │ │ │ ├── charset │ │ │ │ ├── charset.go │ │ │ │ ├── charset_test.go │ │ │ │ └── testdata │ │ │ │ │ ├── HTTP-charset.html │ │ │ │ │ ├── HTTP-vs-UTF-8-BOM.html │ │ │ │ │ ├── HTTP-vs-meta-charset.html │ │ │ │ │ ├── HTTP-vs-meta-content.html │ │ │ │ │ ├── No-encoding-declaration.html │ │ │ │ │ ├── README │ │ │ │ │ ├── UTF-16BE-BOM.html │ │ │ │ │ ├── UTF-16LE-BOM.html │ │ │ │ │ ├── UTF-8-BOM-vs-meta-charset.html │ │ │ │ │ ├── UTF-8-BOM-vs-meta-content.html │ │ │ │ │ ├── meta-charset-attribute.html │ │ │ │ │ └── meta-content-attribute.html │ │ │ ├── const.go │ │ │ ├── doc.go │ │ │ ├── doctype.go │ │ │ ├── entity.go │ │ │ ├── entity_test.go │ │ │ ├── escape.go │ │ │ ├── escape_test.go │ │ │ ├── example_test.go │ │ │ ├── foreign.go │ │ │ ├── node.go │ │ │ ├── node_test.go │ │ │ ├── parse.go │ │ │ ├── parse_test.go │ │ │ ├── render.go │ │ │ ├── render_test.go │ │ │ ├── testdata │ │ │ │ ├── go1.html │ │ │ │ └── webkit │ │ │ │ │ ├── README │ │ │ │ │ ├── adoption01.dat │ │ │ │ │ ├── adoption02.dat │ │ │ │ │ ├── comments01.dat │ │ │ │ │ ├── doctype01.dat │ │ │ │ │ ├── entities01.dat │ │ │ │ │ ├── entities02.dat │ │ │ │ │ ├── html5test-com.dat │ │ │ │ │ ├── inbody01.dat │ │ │ │ │ ├── isindex.dat │ │ │ │ │ ├── pending-spec-changes-plain-text-unsafe.dat │ │ │ │ │ ├── pending-spec-changes.dat │ │ │ │ │ ├── plain-text-unsafe.dat │ │ │ │ │ ├── scriptdata01.dat │ │ │ │ │ ├── scripted │ │ │ │ │ ├── adoption01.dat │ │ │ │ │ └── webkit01.dat │ │ │ │ │ ├── tables01.dat │ │ │ │ │ ├── tests1.dat │ │ │ │ │ ├── tests10.dat │ │ │ │ │ ├── tests11.dat │ │ │ │ │ ├── tests12.dat │ │ │ │ │ ├── tests14.dat │ │ │ │ │ ├── tests15.dat │ │ │ │ │ ├── tests16.dat │ │ │ │ │ ├── tests17.dat │ │ │ │ │ ├── tests18.dat │ │ │ │ │ ├── tests19.dat │ │ │ │ │ ├── tests2.dat │ │ │ │ │ ├── tests20.dat │ │ │ │ │ ├── tests21.dat │ │ │ │ │ ├── tests22.dat │ │ │ │ │ ├── tests23.dat │ │ │ │ │ ├── tests24.dat │ │ │ │ │ ├── tests25.dat │ │ │ │ │ ├── tests26.dat │ │ │ │ │ ├── tests3.dat │ │ │ │ │ ├── tests4.dat │ │ │ │ │ ├── tests5.dat │ │ │ │ │ ├── tests6.dat │ │ │ │ │ ├── tests7.dat │ │ │ │ │ ├── tests8.dat │ │ │ │ │ ├── tests9.dat │ │ │ │ │ ├── tests_innerHTML_1.dat │ │ │ │ │ ├── tricky01.dat │ │ │ │ │ ├── webkit01.dat │ │ │ │ │ └── webkit02.dat │ │ │ ├── token.go │ │ │ └── token_test.go │ │ ├── http │ │ │ └── httpproxy │ │ │ │ ├── export_test.go │ │ │ │ ├── go19_test.go │ │ │ │ ├── proxy.go │ │ │ │ └── proxy_test.go │ │ ├── http2 │ │ │ ├── .gitignore │ │ │ ├── Dockerfile │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── ciphers.go │ │ │ ├── ciphers_test.go │ │ │ ├── client_conn_pool.go │ │ │ ├── configure_transport.go │ │ │ ├── databuffer.go │ │ │ ├── databuffer_test.go │ │ │ ├── errors.go │ │ │ ├── errors_test.go │ │ │ ├── flow.go │ │ │ ├── flow_test.go │ │ │ ├── frame.go │ │ │ ├── frame_test.go │ │ │ ├── go16.go │ │ │ ├── go17.go │ │ │ ├── go17_not18.go │ │ │ ├── go18.go │ │ │ ├── go18_test.go │ │ │ ├── go19.go │ │ │ ├── go19_test.go │ │ │ ├── gotrack.go │ │ │ ├── gotrack_test.go │ │ │ ├── h2demo │ │ │ │ ├── .gitignore │ │ │ │ ├── Dockerfile │ │ │ │ ├── Dockerfile.0 │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── deployment-prod.yaml │ │ │ │ ├── h2demo.go │ │ │ │ ├── launch.go │ │ │ │ ├── rootCA.key │ │ │ │ ├── rootCA.pem │ │ │ │ ├── rootCA.srl │ │ │ │ ├── server.crt │ │ │ │ ├── server.key │ │ │ │ ├── service.yaml │ │ │ │ └── tmpl.go │ │ │ ├── h2i │ │ │ │ ├── README.md │ │ │ │ └── h2i.go │ │ │ ├── headermap.go │ │ │ ├── hpack │ │ │ │ ├── encode.go │ │ │ │ ├── encode_test.go │ │ │ │ ├── hpack.go │ │ │ │ ├── hpack_test.go │ │ │ │ ├── huffman.go │ │ │ │ ├── tables.go │ │ │ │ └── tables_test.go │ │ │ ├── http2.go │ │ │ ├── http2_test.go │ │ │ ├── not_go16.go │ │ │ ├── not_go17.go │ │ │ ├── not_go18.go │ │ │ ├── not_go19.go │ │ │ ├── pipe.go │ │ │ ├── pipe_test.go │ │ │ ├── server.go │ │ │ ├── server_push_test.go │ │ │ ├── server_test.go │ │ │ ├── testdata │ │ │ │ └── draft-ietf-httpbis-http2.xml │ │ │ ├── transport.go │ │ │ ├── transport_test.go │ │ │ ├── write.go │ │ │ ├── writesched.go │ │ │ ├── writesched_priority.go │ │ │ ├── writesched_priority_test.go │ │ │ ├── writesched_random.go │ │ │ ├── writesched_random_test.go │ │ │ ├── writesched_test.go │ │ │ └── z_spec_test.go │ │ ├── icmp │ │ │ ├── diag_test.go │ │ │ ├── dstunreach.go │ │ │ ├── echo.go │ │ │ ├── endpoint.go │ │ │ ├── example_test.go │ │ │ ├── extension.go │ │ │ ├── extension_test.go │ │ │ ├── helper_posix.go │ │ │ ├── interface.go │ │ │ ├── ipv4.go │ │ │ ├── ipv4_test.go │ │ │ ├── ipv6.go │ │ │ ├── listen_posix.go │ │ │ ├── listen_stub.go │ │ │ ├── message.go │ │ │ ├── message_test.go │ │ │ ├── messagebody.go │ │ │ ├── mpls.go │ │ │ ├── multipart.go │ │ │ ├── multipart_test.go │ │ │ ├── packettoobig.go │ │ │ ├── paramprob.go │ │ │ ├── sys_freebsd.go │ │ │ └── timeexceeded.go │ │ ├── idna │ │ │ ├── example_test.go │ │ │ ├── idna.go │ │ │ ├── idna_test.go │ │ │ ├── punycode.go │ │ │ ├── punycode_test.go │ │ │ ├── tables.go │ │ │ ├── trie.go │ │ │ └── trieval.go │ │ ├── internal │ │ │ ├── iana │ │ │ │ ├── const.go │ │ │ │ └── gen.go │ │ │ ├── nettest │ │ │ │ ├── helper_bsd.go │ │ │ │ ├── helper_nobsd.go │ │ │ │ ├── helper_posix.go │ │ │ │ ├── helper_stub.go │ │ │ │ ├── helper_unix.go │ │ │ │ ├── helper_windows.go │ │ │ │ ├── interface.go │ │ │ │ ├── rlimit.go │ │ │ │ └── stack.go │ │ │ ├── socket │ │ │ │ ├── cmsghdr.go │ │ │ │ ├── cmsghdr_bsd.go │ │ │ │ ├── cmsghdr_linux_32bit.go │ │ │ │ ├── cmsghdr_linux_64bit.go │ │ │ │ ├── cmsghdr_solaris_64bit.go │ │ │ │ ├── cmsghdr_stub.go │ │ │ │ ├── defs_darwin.go │ │ │ │ ├── defs_dragonfly.go │ │ │ │ ├── defs_freebsd.go │ │ │ │ ├── defs_linux.go │ │ │ │ ├── defs_netbsd.go │ │ │ │ ├── defs_openbsd.go │ │ │ │ ├── defs_solaris.go │ │ │ │ ├── error_unix.go │ │ │ │ ├── error_windows.go │ │ │ │ ├── iovec_32bit.go │ │ │ │ ├── iovec_64bit.go │ │ │ │ ├── iovec_solaris_64bit.go │ │ │ │ ├── iovec_stub.go │ │ │ │ ├── mmsghdr_stub.go │ │ │ │ ├── mmsghdr_unix.go │ │ │ │ ├── msghdr_bsd.go │ │ │ │ ├── msghdr_bsdvar.go │ │ │ │ ├── msghdr_linux.go │ │ │ │ ├── msghdr_linux_32bit.go │ │ │ │ ├── msghdr_linux_64bit.go │ │ │ │ ├── msghdr_openbsd.go │ │ │ │ ├── msghdr_solaris_64bit.go │ │ │ │ ├── msghdr_stub.go │ │ │ │ ├── rawconn.go │ │ │ │ ├── rawconn_mmsg.go │ │ │ │ ├── rawconn_msg.go │ │ │ │ ├── rawconn_nommsg.go │ │ │ │ ├── rawconn_nomsg.go │ │ │ │ ├── rawconn_stub.go │ │ │ │ ├── reflect.go │ │ │ │ ├── socket.go │ │ │ │ ├── socket_go1_9_test.go │ │ │ │ ├── socket_test.go │ │ │ │ ├── sys.go │ │ │ │ ├── sys_bsd.go │ │ │ │ ├── sys_bsdvar.go │ │ │ │ ├── sys_darwin.go │ │ │ │ ├── sys_dragonfly.go │ │ │ │ ├── sys_linux.go │ │ │ │ ├── sys_linux_386.go │ │ │ │ ├── sys_linux_386.s │ │ │ │ ├── sys_linux_amd64.go │ │ │ │ ├── sys_linux_arm.go │ │ │ │ ├── sys_linux_arm64.go │ │ │ │ ├── sys_linux_mips.go │ │ │ │ ├── sys_linux_mips64.go │ │ │ │ ├── sys_linux_mips64le.go │ │ │ │ ├── sys_linux_mipsle.go │ │ │ │ ├── sys_linux_ppc64.go │ │ │ │ ├── sys_linux_ppc64le.go │ │ │ │ ├── sys_linux_s390x.go │ │ │ │ ├── sys_linux_s390x.s │ │ │ │ ├── sys_netbsd.go │ │ │ │ ├── sys_posix.go │ │ │ │ ├── sys_solaris.go │ │ │ │ ├── sys_solaris_amd64.s │ │ │ │ ├── sys_stub.go │ │ │ │ ├── sys_unix.go │ │ │ │ ├── sys_windows.go │ │ │ │ ├── zsys_darwin_386.go │ │ │ │ ├── zsys_darwin_amd64.go │ │ │ │ ├── zsys_darwin_arm.go │ │ │ │ ├── zsys_darwin_arm64.go │ │ │ │ ├── zsys_dragonfly_amd64.go │ │ │ │ ├── zsys_freebsd_386.go │ │ │ │ ├── zsys_freebsd_amd64.go │ │ │ │ ├── zsys_freebsd_arm.go │ │ │ │ ├── zsys_linux_386.go │ │ │ │ ├── zsys_linux_amd64.go │ │ │ │ ├── zsys_linux_arm.go │ │ │ │ ├── zsys_linux_arm64.go │ │ │ │ ├── zsys_linux_mips.go │ │ │ │ ├── zsys_linux_mips64.go │ │ │ │ ├── zsys_linux_mips64le.go │ │ │ │ ├── zsys_linux_mipsle.go │ │ │ │ ├── zsys_linux_ppc64.go │ │ │ │ ├── zsys_linux_ppc64le.go │ │ │ │ ├── zsys_linux_s390x.go │ │ │ │ ├── zsys_netbsd_386.go │ │ │ │ ├── zsys_netbsd_amd64.go │ │ │ │ ├── zsys_netbsd_arm.go │ │ │ │ ├── zsys_openbsd_386.go │ │ │ │ ├── zsys_openbsd_amd64.go │ │ │ │ ├── zsys_openbsd_arm.go │ │ │ │ └── zsys_solaris_amd64.go │ │ │ └── timeseries │ │ │ │ ├── timeseries.go │ │ │ │ └── timeseries_test.go │ │ ├── ipv4 │ │ │ ├── batch.go │ │ │ ├── bpf_test.go │ │ │ ├── control.go │ │ │ ├── control_bsd.go │ │ │ ├── control_pktinfo.go │ │ │ ├── control_stub.go │ │ │ ├── control_test.go │ │ │ ├── control_unix.go │ │ │ ├── control_windows.go │ │ │ ├── defs_darwin.go │ │ │ ├── defs_dragonfly.go │ │ │ ├── defs_freebsd.go │ │ │ ├── defs_linux.go │ │ │ ├── defs_netbsd.go │ │ │ ├── defs_openbsd.go │ │ │ ├── defs_solaris.go │ │ │ ├── dgramopt.go │ │ │ ├── doc.go │ │ │ ├── endpoint.go │ │ │ ├── example_test.go │ │ │ ├── gen.go │ │ │ ├── genericopt.go │ │ │ ├── header.go │ │ │ ├── header_test.go │ │ │ ├── helper.go │ │ │ ├── iana.go │ │ │ ├── icmp.go │ │ │ ├── icmp_linux.go │ │ │ ├── icmp_stub.go │ │ │ ├── icmp_test.go │ │ │ ├── multicast_test.go │ │ │ ├── multicastlistener_test.go │ │ │ ├── multicastsockopt_test.go │ │ │ ├── packet.go │ │ │ ├── packet_go1_8.go │ │ │ ├── packet_go1_9.go │ │ │ ├── payload.go │ │ │ ├── payload_cmsg.go │ │ │ ├── payload_cmsg_go1_8.go │ │ │ ├── payload_cmsg_go1_9.go │ │ │ ├── payload_nocmsg.go │ │ │ ├── readwrite_go1_8_test.go │ │ │ ├── readwrite_go1_9_test.go │ │ │ ├── readwrite_test.go │ │ │ ├── sockopt.go │ │ │ ├── sockopt_posix.go │ │ │ ├── sockopt_stub.go │ │ │ ├── sys_asmreq.go │ │ │ ├── sys_asmreq_stub.go │ │ │ ├── sys_asmreqn.go │ │ │ ├── sys_asmreqn_stub.go │ │ │ ├── sys_bpf.go │ │ │ ├── sys_bpf_stub.go │ │ │ ├── sys_bsd.go │ │ │ ├── sys_darwin.go │ │ │ ├── sys_dragonfly.go │ │ │ ├── sys_freebsd.go │ │ │ ├── sys_linux.go │ │ │ ├── sys_solaris.go │ │ │ ├── sys_ssmreq.go │ │ │ ├── sys_ssmreq_stub.go │ │ │ ├── sys_stub.go │ │ │ ├── sys_windows.go │ │ │ ├── unicast_test.go │ │ │ ├── unicastsockopt_test.go │ │ │ ├── zsys_darwin.go │ │ │ ├── zsys_dragonfly.go │ │ │ ├── zsys_freebsd_386.go │ │ │ ├── zsys_freebsd_amd64.go │ │ │ ├── zsys_freebsd_arm.go │ │ │ ├── zsys_linux_386.go │ │ │ ├── zsys_linux_amd64.go │ │ │ ├── zsys_linux_arm.go │ │ │ ├── zsys_linux_arm64.go │ │ │ ├── zsys_linux_mips.go │ │ │ ├── zsys_linux_mips64.go │ │ │ ├── zsys_linux_mips64le.go │ │ │ ├── zsys_linux_mipsle.go │ │ │ ├── zsys_linux_ppc.go │ │ │ ├── zsys_linux_ppc64.go │ │ │ ├── zsys_linux_ppc64le.go │ │ │ ├── zsys_linux_s390x.go │ │ │ ├── zsys_netbsd.go │ │ │ ├── zsys_openbsd.go │ │ │ └── zsys_solaris.go │ │ ├── ipv6 │ │ │ ├── batch.go │ │ │ ├── bpf_test.go │ │ │ ├── control.go │ │ │ ├── control_rfc2292_unix.go │ │ │ ├── control_rfc3542_unix.go │ │ │ ├── control_stub.go │ │ │ ├── control_test.go │ │ │ ├── control_unix.go │ │ │ ├── control_windows.go │ │ │ ├── defs_darwin.go │ │ │ ├── defs_dragonfly.go │ │ │ ├── defs_freebsd.go │ │ │ ├── defs_linux.go │ │ │ ├── defs_netbsd.go │ │ │ ├── defs_openbsd.go │ │ │ ├── defs_solaris.go │ │ │ ├── dgramopt.go │ │ │ ├── doc.go │ │ │ ├── endpoint.go │ │ │ ├── example_test.go │ │ │ ├── gen.go │ │ │ ├── genericopt.go │ │ │ ├── header.go │ │ │ ├── header_test.go │ │ │ ├── helper.go │ │ │ ├── iana.go │ │ │ ├── icmp.go │ │ │ ├── icmp_bsd.go │ │ │ ├── icmp_linux.go │ │ │ ├── icmp_solaris.go │ │ │ ├── icmp_stub.go │ │ │ ├── icmp_test.go │ │ │ ├── icmp_windows.go │ │ │ ├── mocktransponder_test.go │ │ │ ├── multicast_test.go │ │ │ ├── multicastlistener_test.go │ │ │ ├── multicastsockopt_test.go │ │ │ ├── payload.go │ │ │ ├── payload_cmsg.go │ │ │ ├── payload_cmsg_go1_8.go │ │ │ ├── payload_cmsg_go1_9.go │ │ │ ├── payload_nocmsg.go │ │ │ ├── readwrite_go1_8_test.go │ │ │ ├── readwrite_go1_9_test.go │ │ │ ├── readwrite_test.go │ │ │ ├── sockopt.go │ │ │ ├── sockopt_posix.go │ │ │ ├── sockopt_stub.go │ │ │ ├── sockopt_test.go │ │ │ ├── sys_asmreq.go │ │ │ ├── sys_asmreq_stub.go │ │ │ ├── sys_bpf.go │ │ │ ├── sys_bpf_stub.go │ │ │ ├── sys_bsd.go │ │ │ ├── sys_darwin.go │ │ │ ├── sys_freebsd.go │ │ │ ├── sys_linux.go │ │ │ ├── sys_solaris.go │ │ │ ├── sys_ssmreq.go │ │ │ ├── sys_ssmreq_stub.go │ │ │ ├── sys_stub.go │ │ │ ├── sys_windows.go │ │ │ ├── unicast_test.go │ │ │ ├── unicastsockopt_test.go │ │ │ ├── zsys_darwin.go │ │ │ ├── zsys_dragonfly.go │ │ │ ├── zsys_freebsd_386.go │ │ │ ├── zsys_freebsd_amd64.go │ │ │ ├── zsys_freebsd_arm.go │ │ │ ├── zsys_linux_386.go │ │ │ ├── zsys_linux_amd64.go │ │ │ ├── zsys_linux_arm.go │ │ │ ├── zsys_linux_arm64.go │ │ │ ├── zsys_linux_mips.go │ │ │ ├── zsys_linux_mips64.go │ │ │ ├── zsys_linux_mips64le.go │ │ │ ├── zsys_linux_mipsle.go │ │ │ ├── zsys_linux_ppc.go │ │ │ ├── zsys_linux_ppc64.go │ │ │ ├── zsys_linux_ppc64le.go │ │ │ ├── zsys_linux_s390x.go │ │ │ ├── zsys_netbsd.go │ │ │ ├── zsys_openbsd.go │ │ │ └── zsys_solaris.go │ │ ├── lex │ │ │ └── httplex │ │ │ │ ├── httplex.go │ │ │ │ └── httplex_test.go │ │ ├── lif │ │ │ ├── address.go │ │ │ ├── address_test.go │ │ │ ├── binary.go │ │ │ ├── defs_solaris.go │ │ │ ├── lif.go │ │ │ ├── link.go │ │ │ ├── link_test.go │ │ │ ├── sys.go │ │ │ ├── sys_solaris_amd64.s │ │ │ ├── syscall.go │ │ │ └── zsys_solaris_amd64.go │ │ ├── nettest │ │ │ ├── conntest.go │ │ │ ├── conntest_go16.go │ │ │ ├── conntest_go17.go │ │ │ └── conntest_test.go │ │ ├── netutil │ │ │ ├── listen.go │ │ │ └── listen_test.go │ │ ├── proxy │ │ │ ├── direct.go │ │ │ ├── per_host.go │ │ │ ├── per_host_test.go │ │ │ ├── proxy.go │ │ │ ├── proxy_test.go │ │ │ └── socks5.go │ │ ├── publicsuffix │ │ │ ├── gen.go │ │ │ ├── list.go │ │ │ ├── list_test.go │ │ │ ├── table.go │ │ │ └── table_test.go │ │ ├── route │ │ │ ├── address.go │ │ │ ├── address_darwin_test.go │ │ │ ├── address_test.go │ │ │ ├── binary.go │ │ │ ├── defs_darwin.go │ │ │ ├── defs_dragonfly.go │ │ │ ├── defs_freebsd.go │ │ │ ├── defs_netbsd.go │ │ │ ├── defs_openbsd.go │ │ │ ├── interface.go │ │ │ ├── interface_announce.go │ │ │ ├── interface_classic.go │ │ │ ├── interface_freebsd.go │ │ │ ├── interface_multicast.go │ │ │ ├── interface_openbsd.go │ │ │ ├── message.go │ │ │ ├── message_darwin_test.go │ │ │ ├── message_freebsd_test.go │ │ │ ├── message_test.go │ │ │ ├── route.go │ │ │ ├── route_classic.go │ │ │ ├── route_openbsd.go │ │ │ ├── route_test.go │ │ │ ├── sys.go │ │ │ ├── sys_darwin.go │ │ │ ├── sys_dragonfly.go │ │ │ ├── sys_freebsd.go │ │ │ ├── sys_netbsd.go │ │ │ ├── sys_openbsd.go │ │ │ ├── syscall.go │ │ │ ├── zsys_darwin.go │ │ │ ├── zsys_dragonfly.go │ │ │ ├── zsys_freebsd_386.go │ │ │ ├── zsys_freebsd_amd64.go │ │ │ ├── zsys_freebsd_arm.go │ │ │ ├── zsys_netbsd.go │ │ │ └── zsys_openbsd.go │ │ ├── trace │ │ │ ├── events.go │ │ │ ├── histogram.go │ │ │ ├── histogram_test.go │ │ │ ├── trace.go │ │ │ ├── trace_go16.go │ │ │ ├── trace_go17.go │ │ │ └── trace_test.go │ │ ├── webdav │ │ │ ├── file.go │ │ │ ├── file_go1.6.go │ │ │ ├── file_go1.7.go │ │ │ ├── file_test.go │ │ │ ├── if.go │ │ │ ├── if_test.go │ │ │ ├── internal │ │ │ │ └── xml │ │ │ │ │ ├── README │ │ │ │ │ ├── atom_test.go │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── marshal.go │ │ │ │ │ ├── marshal_test.go │ │ │ │ │ ├── read.go │ │ │ │ │ ├── read_test.go │ │ │ │ │ ├── typeinfo.go │ │ │ │ │ ├── xml.go │ │ │ │ │ └── xml_test.go │ │ │ ├── litmus_test_server.go │ │ │ ├── lock.go │ │ │ ├── lock_test.go │ │ │ ├── prop.go │ │ │ ├── prop_test.go │ │ │ ├── webdav.go │ │ │ ├── webdav_test.go │ │ │ ├── xml.go │ │ │ └── xml_test.go │ │ ├── websocket │ │ │ ├── client.go │ │ │ ├── dial.go │ │ │ ├── dial_test.go │ │ │ ├── exampledial_test.go │ │ │ ├── examplehandler_test.go │ │ │ ├── hybi.go │ │ │ ├── hybi_test.go │ │ │ ├── server.go │ │ │ ├── websocket.go │ │ │ └── websocket_test.go │ │ └── xsrftoken │ │ │ ├── xsrf.go │ │ │ └── xsrf_test.go │ │ └── text │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README.md │ │ ├── cases │ │ ├── cases.go │ │ ├── context.go │ │ ├── context_test.go │ │ ├── example_test.go │ │ ├── fold.go │ │ ├── fold_test.go │ │ ├── gen.go │ │ ├── gen_trieval.go │ │ ├── icu.go │ │ ├── icu_test.go │ │ ├── info.go │ │ ├── map.go │ │ ├── map_test.go │ │ ├── tables10.0.0.go │ │ ├── tables10.0.0_test.go │ │ ├── tables9.0.0.go │ │ ├── tables9.0.0_test.go │ │ └── trieval.go │ │ ├── cmd │ │ └── gotext │ │ │ ├── common.go │ │ │ ├── doc.go │ │ │ ├── examples │ │ │ ├── extract │ │ │ │ ├── catalog.go │ │ │ │ ├── locales │ │ │ │ │ ├── de │ │ │ │ │ │ ├── messages.gotext.json │ │ │ │ │ │ └── out.gotext.json │ │ │ │ │ ├── en-US │ │ │ │ │ │ ├── messages.gotext.json │ │ │ │ │ │ └── out.gotext.json │ │ │ │ │ ├── extracted.gotext.json │ │ │ │ │ └── zh │ │ │ │ │ │ ├── messages.gotext.json │ │ │ │ │ │ └── out.gotext.json │ │ │ │ └── main.go │ │ │ ├── extract_http │ │ │ │ ├── locales │ │ │ │ │ ├── de │ │ │ │ │ │ └── out.gotext.json │ │ │ │ │ ├── en-US │ │ │ │ │ │ └── out.gotext.json │ │ │ │ │ ├── extracted.gotext.json │ │ │ │ │ └── zh │ │ │ │ │ │ └── out.gotext.json │ │ │ │ ├── main.go │ │ │ │ └── pkg │ │ │ │ │ └── pkg.go │ │ │ └── rewrite │ │ │ │ ├── main.go │ │ │ │ └── printer.go │ │ │ ├── extract.go │ │ │ ├── generate.go │ │ │ ├── main.go │ │ │ └── rewrite.go │ │ ├── codereview.cfg │ │ ├── collate │ │ ├── build │ │ │ ├── builder.go │ │ │ ├── builder_test.go │ │ │ ├── colelem.go │ │ │ ├── colelem_test.go │ │ │ ├── contract.go │ │ │ ├── contract_test.go │ │ │ ├── order.go │ │ │ ├── order_test.go │ │ │ ├── table.go │ │ │ ├── trie.go │ │ │ └── trie_test.go │ │ ├── collate.go │ │ ├── collate_test.go │ │ ├── export_test.go │ │ ├── index.go │ │ ├── maketables.go │ │ ├── option.go │ │ ├── option_test.go │ │ ├── reg_test.go │ │ ├── sort.go │ │ ├── sort_test.go │ │ ├── table_test.go │ │ ├── tables.go │ │ └── tools │ │ │ └── colcmp │ │ │ ├── Makefile │ │ │ ├── chars.go │ │ │ ├── col.go │ │ │ ├── colcmp.go │ │ │ ├── darwin.go │ │ │ ├── gen.go │ │ │ └── icu.go │ │ ├── currency │ │ ├── common.go │ │ ├── currency.go │ │ ├── currency_test.go │ │ ├── example_test.go │ │ ├── format.go │ │ ├── format_test.go │ │ ├── gen.go │ │ ├── gen_common.go │ │ ├── query.go │ │ ├── query_test.go │ │ ├── tables.go │ │ └── tables_test.go │ │ ├── date │ │ ├── data_test.go │ │ ├── gen.go │ │ ├── gen_test.go │ │ └── tables.go │ │ ├── doc.go │ │ ├── encoding │ │ ├── charmap │ │ │ ├── charmap.go │ │ │ ├── charmap_test.go │ │ │ ├── maketables.go │ │ │ └── tables.go │ │ ├── encoding.go │ │ ├── encoding_test.go │ │ ├── example_test.go │ │ ├── htmlindex │ │ │ ├── gen.go │ │ │ ├── htmlindex.go │ │ │ ├── htmlindex_test.go │ │ │ ├── map.go │ │ │ └── tables.go │ │ ├── ianaindex │ │ │ ├── example_test.go │ │ │ ├── gen.go │ │ │ ├── ianaindex.go │ │ │ ├── ianaindex_test.go │ │ │ └── tables.go │ │ ├── internal │ │ │ ├── enctest │ │ │ │ └── enctest.go │ │ │ ├── identifier │ │ │ │ ├── gen.go │ │ │ │ ├── identifier.go │ │ │ │ └── mib.go │ │ │ └── internal.go │ │ ├── japanese │ │ │ ├── all.go │ │ │ ├── all_test.go │ │ │ ├── eucjp.go │ │ │ ├── iso2022jp.go │ │ │ ├── maketables.go │ │ │ ├── shiftjis.go │ │ │ └── tables.go │ │ ├── korean │ │ │ ├── all_test.go │ │ │ ├── euckr.go │ │ │ ├── maketables.go │ │ │ └── tables.go │ │ ├── simplifiedchinese │ │ │ ├── all.go │ │ │ ├── all_test.go │ │ │ ├── gbk.go │ │ │ ├── hzgb2312.go │ │ │ ├── maketables.go │ │ │ └── tables.go │ │ ├── testdata │ │ │ ├── candide-gb18030.txt │ │ │ ├── candide-utf-16le.txt │ │ │ ├── candide-utf-32be.txt │ │ │ ├── candide-utf-8.txt │ │ │ ├── candide-windows-1252.txt │ │ │ ├── rashomon-euc-jp.txt │ │ │ ├── rashomon-iso-2022-jp.txt │ │ │ ├── rashomon-shift-jis.txt │ │ │ ├── rashomon-utf-8.txt │ │ │ ├── sunzi-bingfa-gb-levels-1-and-2-hz-gb2312.txt │ │ │ ├── sunzi-bingfa-gb-levels-1-and-2-utf-8.txt │ │ │ ├── sunzi-bingfa-simplified-gbk.txt │ │ │ ├── sunzi-bingfa-simplified-utf-8.txt │ │ │ ├── sunzi-bingfa-traditional-big5.txt │ │ │ ├── sunzi-bingfa-traditional-utf-8.txt │ │ │ ├── unsu-joh-eun-nal-euc-kr.txt │ │ │ └── unsu-joh-eun-nal-utf-8.txt │ │ ├── traditionalchinese │ │ │ ├── all_test.go │ │ │ ├── big5.go │ │ │ ├── maketables.go │ │ │ └── tables.go │ │ └── unicode │ │ │ ├── override.go │ │ │ ├── unicode.go │ │ │ ├── unicode_test.go │ │ │ └── utf32 │ │ │ ├── utf32.go │ │ │ └── utf32_test.go │ │ ├── feature │ │ └── plural │ │ │ ├── common.go │ │ │ ├── data_test.go │ │ │ ├── example_test.go │ │ │ ├── gen.go │ │ │ ├── gen_common.go │ │ │ ├── message.go │ │ │ ├── message_test.go │ │ │ ├── plural.go │ │ │ ├── plural_test.go │ │ │ └── tables.go │ │ ├── gen.go │ │ ├── internal │ │ ├── catmsg │ │ │ ├── catmsg.go │ │ │ ├── catmsg_test.go │ │ │ ├── codec.go │ │ │ ├── varint.go │ │ │ └── varint_test.go │ │ ├── cldrtree │ │ │ ├── cldrtree.go │ │ │ ├── cldrtree_test.go │ │ │ ├── generate.go │ │ │ ├── option.go │ │ │ ├── testdata │ │ │ │ ├── test1 │ │ │ │ │ ├── common │ │ │ │ │ │ └── main │ │ │ │ │ │ │ └── root.xml │ │ │ │ │ └── output.go │ │ │ │ └── test2 │ │ │ │ │ ├── common │ │ │ │ │ └── main │ │ │ │ │ │ ├── en.xml │ │ │ │ │ │ ├── en_001.xml │ │ │ │ │ │ ├── en_GB.xml │ │ │ │ │ │ └── root.xml │ │ │ │ │ └── output.go │ │ │ ├── tree.go │ │ │ └── type.go │ │ ├── colltab │ │ │ ├── collate_test.go │ │ │ ├── collelem.go │ │ │ ├── collelem_test.go │ │ │ ├── colltab.go │ │ │ ├── colltab_test.go │ │ │ ├── contract.go │ │ │ ├── contract_test.go │ │ │ ├── iter.go │ │ │ ├── iter_test.go │ │ │ ├── numeric.go │ │ │ ├── numeric_test.go │ │ │ ├── table.go │ │ │ ├── trie.go │ │ │ ├── trie_test.go │ │ │ ├── weighter.go │ │ │ └── weighter_test.go │ │ ├── export │ │ │ ├── README │ │ │ └── idna │ │ │ │ ├── common_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── gen10.0.0_test.go │ │ │ │ ├── gen9.0.0_test.go │ │ │ │ ├── gen_common.go │ │ │ │ ├── gen_trieval.go │ │ │ │ ├── idna10.0.0.go │ │ │ │ ├── idna10.0.0_test.go │ │ │ │ ├── idna9.0.0.go │ │ │ │ ├── idna9.0.0_test.go │ │ │ │ ├── idna_test.go │ │ │ │ ├── punycode.go │ │ │ │ ├── punycode_test.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ ├── trie.go │ │ │ │ └── trieval.go │ │ ├── format │ │ │ ├── format.go │ │ │ ├── parser.go │ │ │ └── parser_test.go │ │ ├── gen.go │ │ ├── gen │ │ │ ├── code.go │ │ │ └── gen.go │ │ ├── gen_test.go │ │ ├── internal.go │ │ ├── internal_test.go │ │ ├── match.go │ │ ├── match_test.go │ │ ├── number │ │ │ ├── common.go │ │ │ ├── decimal.go │ │ │ ├── decimal_test.go │ │ │ ├── format.go │ │ │ ├── format_test.go │ │ │ ├── gen.go │ │ │ ├── gen_common.go │ │ │ ├── number.go │ │ │ ├── number_test.go │ │ │ ├── pattern.go │ │ │ ├── pattern_test.go │ │ │ ├── roundingmode_string.go │ │ │ ├── tables.go │ │ │ └── tables_test.go │ │ ├── stringset │ │ │ ├── set.go │ │ │ └── set_test.go │ │ ├── tables.go │ │ ├── tag │ │ │ ├── tag.go │ │ │ └── tag_test.go │ │ ├── testtext │ │ │ ├── codesize.go │ │ │ ├── flag.go │ │ │ ├── gc.go │ │ │ ├── gccgo.go │ │ │ ├── go1_6.go │ │ │ ├── go1_7.go │ │ │ └── text.go │ │ ├── triegen │ │ │ ├── compact.go │ │ │ ├── data_test.go │ │ │ ├── example_compact_test.go │ │ │ ├── example_test.go │ │ │ ├── gen_test.go │ │ │ ├── print.go │ │ │ └── triegen.go │ │ ├── ucd │ │ │ ├── example_test.go │ │ │ ├── ucd.go │ │ │ └── ucd_test.go │ │ └── utf8internal │ │ │ └── utf8internal.go │ │ ├── language │ │ ├── Makefile │ │ ├── common.go │ │ ├── coverage.go │ │ ├── coverage_test.go │ │ ├── display │ │ │ ├── dict.go │ │ │ ├── dict_test.go │ │ │ ├── display.go │ │ │ ├── display_test.go │ │ │ ├── examples_test.go │ │ │ ├── lookup.go │ │ │ ├── maketables.go │ │ │ └── tables.go │ │ ├── doc.go │ │ ├── examples_test.go │ │ ├── gen.go │ │ ├── gen_common.go │ │ ├── gen_index.go │ │ ├── go1_1.go │ │ ├── go1_2.go │ │ ├── httpexample_test.go │ │ ├── index.go │ │ ├── language.go │ │ ├── language_test.go │ │ ├── lookup.go │ │ ├── lookup_test.go │ │ ├── match.go │ │ ├── match_test.go │ │ ├── parse.go │ │ ├── parse_test.go │ │ ├── tables.go │ │ ├── tags.go │ │ └── testdata │ │ │ ├── CLDRLocaleMatcherTest.txt │ │ │ └── GoLocaleMatcherTest.txt │ │ ├── message │ │ ├── catalog.go │ │ ├── catalog │ │ │ ├── catalog.go │ │ │ ├── catalog_test.go │ │ │ ├── dict.go │ │ │ ├── go19.go │ │ │ └── gopre19.go │ │ ├── catalog_test.go │ │ ├── doc.go │ │ ├── examples_test.go │ │ ├── fmt_test.go │ │ ├── format.go │ │ ├── message.go │ │ ├── message_test.go │ │ ├── pipeline │ │ │ ├── extract.go │ │ │ ├── generate.go │ │ │ ├── message.go │ │ │ ├── pipeline.go │ │ │ └── rewrite.go │ │ └── print.go │ │ ├── number │ │ ├── doc.go │ │ ├── examples_test.go │ │ ├── format.go │ │ ├── format_test.go │ │ ├── number.go │ │ ├── number_test.go │ │ └── option.go │ │ ├── runes │ │ ├── cond.go │ │ ├── cond_test.go │ │ ├── example_test.go │ │ ├── runes.go │ │ └── runes_test.go │ │ ├── search │ │ ├── index.go │ │ ├── pattern.go │ │ ├── pattern_test.go │ │ ├── search.go │ │ └── tables.go │ │ ├── secure │ │ ├── bidirule │ │ │ ├── bench_test.go │ │ │ ├── bidirule.go │ │ │ ├── bidirule10.0.0.go │ │ │ ├── bidirule10.0.0_test.go │ │ │ ├── bidirule9.0.0.go │ │ │ ├── bidirule9.0.0_test.go │ │ │ └── bidirule_test.go │ │ ├── doc.go │ │ └── precis │ │ │ ├── benchmark_test.go │ │ │ ├── class.go │ │ │ ├── class_test.go │ │ │ ├── context.go │ │ │ ├── doc.go │ │ │ ├── enforce10.0.0_test.go │ │ │ ├── enforce9.0.0_test.go │ │ │ ├── enforce_test.go │ │ │ ├── gen.go │ │ │ ├── gen_trieval.go │ │ │ ├── nickname.go │ │ │ ├── options.go │ │ │ ├── profile.go │ │ │ ├── profile_test.go │ │ │ ├── profiles.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── tables_test.go │ │ │ ├── transformer.go │ │ │ └── trieval.go │ │ ├── transform │ │ ├── examples_test.go │ │ ├── transform.go │ │ └── transform_test.go │ │ ├── unicode │ │ ├── bidi │ │ │ ├── bidi.go │ │ │ ├── bracket.go │ │ │ ├── core.go │ │ │ ├── core_test.go │ │ │ ├── gen.go │ │ │ ├── gen_ranges.go │ │ │ ├── gen_trieval.go │ │ │ ├── prop.go │ │ │ ├── ranges_test.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── tables_test.go │ │ │ └── trieval.go │ │ ├── cldr │ │ │ ├── base.go │ │ │ ├── cldr.go │ │ │ ├── cldr_test.go │ │ │ ├── collate.go │ │ │ ├── collate_test.go │ │ │ ├── data_test.go │ │ │ ├── decode.go │ │ │ ├── examples_test.go │ │ │ ├── makexml.go │ │ │ ├── resolve.go │ │ │ ├── resolve_test.go │ │ │ ├── slice.go │ │ │ ├── slice_test.go │ │ │ └── xml.go │ │ ├── doc.go │ │ ├── norm │ │ │ ├── composition.go │ │ │ ├── composition_test.go │ │ │ ├── data10.0.0_test.go │ │ │ ├── data9.0.0_test.go │ │ │ ├── example_iter_test.go │ │ │ ├── example_test.go │ │ │ ├── forminfo.go │ │ │ ├── forminfo_test.go │ │ │ ├── input.go │ │ │ ├── iter.go │ │ │ ├── iter_test.go │ │ │ ├── maketables.go │ │ │ ├── normalize.go │ │ │ ├── normalize_test.go │ │ │ ├── readwriter.go │ │ │ ├── readwriter_test.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── transform.go │ │ │ ├── transform_test.go │ │ │ ├── trie.go │ │ │ ├── triegen.go │ │ │ └── ucd_test.go │ │ ├── rangetable │ │ │ ├── gen.go │ │ │ ├── merge.go │ │ │ ├── merge_test.go │ │ │ ├── rangetable.go │ │ │ ├── rangetable_test.go │ │ │ ├── tables10.0.0.go │ │ │ └── tables9.0.0.go │ │ └── runenames │ │ │ ├── bits.go │ │ │ ├── example_test.go │ │ │ ├── gen.go │ │ │ ├── gen_bits.go │ │ │ ├── runenames.go │ │ │ ├── runenames_test.go │ │ │ └── tables.go │ │ └── width │ │ ├── common_test.go │ │ ├── example_test.go │ │ ├── gen.go │ │ ├── gen_common.go │ │ ├── gen_trieval.go │ │ ├── kind_string.go │ │ ├── runes_test.go │ │ ├── tables10.0.0.go │ │ ├── tables9.0.0.go │ │ ├── tables_test.go │ │ ├── transform.go │ │ ├── transform_test.go │ │ ├── trieval.go │ │ └── width.go │ └── google.golang.org │ ├── genproto │ ├── .github │ │ └── CODEOWNERS │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── googleapis │ │ ├── api │ │ │ ├── annotations │ │ │ │ ├── annotations.pb.go │ │ │ │ └── http.pb.go │ │ │ ├── authorization_config.pb.go │ │ │ ├── configchange │ │ │ │ └── config_change.pb.go │ │ │ ├── distribution │ │ │ │ └── distribution.pb.go │ │ │ ├── experimental.pb.go │ │ │ ├── httpbody │ │ │ │ └── httpbody.pb.go │ │ │ ├── label │ │ │ │ └── label.pb.go │ │ │ ├── metric │ │ │ │ └── metric.pb.go │ │ │ ├── monitoredres │ │ │ │ └── monitored_resource.pb.go │ │ │ ├── serviceconfig │ │ │ │ ├── auth.pb.go │ │ │ │ ├── backend.pb.go │ │ │ │ ├── billing.pb.go │ │ │ │ ├── consumer.pb.go │ │ │ │ ├── context.pb.go │ │ │ │ ├── control.pb.go │ │ │ │ ├── documentation.pb.go │ │ │ │ ├── endpoint.pb.go │ │ │ │ ├── log.pb.go │ │ │ │ ├── logging.pb.go │ │ │ │ ├── monitoring.pb.go │ │ │ │ ├── quota.pb.go │ │ │ │ ├── service.pb.go │ │ │ │ ├── source_info.pb.go │ │ │ │ ├── system_parameter.pb.go │ │ │ │ └── usage.pb.go │ │ │ ├── servicecontrol │ │ │ │ └── v1 │ │ │ │ │ ├── check_error.pb.go │ │ │ │ │ ├── distribution.pb.go │ │ │ │ │ ├── log_entry.pb.go │ │ │ │ │ ├── metric_value.pb.go │ │ │ │ │ ├── operation.pb.go │ │ │ │ │ ├── quota_controller.pb.go │ │ │ │ │ └── service_controller.pb.go │ │ │ └── servicemanagement │ │ │ │ └── v1 │ │ │ │ ├── resources.pb.go │ │ │ │ └── servicemanager.pb.go │ │ ├── appengine │ │ │ ├── legacy │ │ │ │ └── audit_data.pb.go │ │ │ ├── logging │ │ │ │ └── v1 │ │ │ │ │ └── request_log.pb.go │ │ │ └── v1 │ │ │ │ ├── app_yaml.pb.go │ │ │ │ ├── appengine.pb.go │ │ │ │ ├── application.pb.go │ │ │ │ ├── audit_data.pb.go │ │ │ │ ├── deploy.pb.go │ │ │ │ ├── instance.pb.go │ │ │ │ ├── location.pb.go │ │ │ │ ├── operation.pb.go │ │ │ │ ├── service.pb.go │ │ │ │ └── version.pb.go │ │ ├── assistant │ │ │ └── embedded │ │ │ │ ├── v1alpha1 │ │ │ │ └── embedded_assistant.pb.go │ │ │ │ └── v1alpha2 │ │ │ │ └── embedded_assistant.pb.go │ │ ├── bigtable │ │ │ ├── admin │ │ │ │ ├── cluster │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── bigtable_cluster_data.pb.go │ │ │ │ │ │ ├── bigtable_cluster_service.pb.go │ │ │ │ │ │ └── bigtable_cluster_service_messages.pb.go │ │ │ │ ├── table │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── bigtable_table_data.pb.go │ │ │ │ │ │ ├── bigtable_table_service.pb.go │ │ │ │ │ │ └── bigtable_table_service_messages.pb.go │ │ │ │ └── v2 │ │ │ │ │ ├── bigtable_instance_admin.pb.go │ │ │ │ │ ├── bigtable_table_admin.pb.go │ │ │ │ │ ├── common.pb.go │ │ │ │ │ ├── instance.pb.go │ │ │ │ │ └── table.pb.go │ │ │ ├── v1 │ │ │ │ ├── bigtable_data.pb.go │ │ │ │ ├── bigtable_service.pb.go │ │ │ │ └── bigtable_service_messages.pb.go │ │ │ └── v2 │ │ │ │ ├── bigtable.pb.go │ │ │ │ └── data.pb.go │ │ ├── bytestream │ │ │ └── bytestream.pb.go │ │ ├── cloud │ │ │ ├── audit │ │ │ │ └── audit_log.pb.go │ │ │ ├── bigquery │ │ │ │ ├── datatransfer │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── datatransfer.pb.go │ │ │ │ │ │ └── transfer.pb.go │ │ │ │ └── logging │ │ │ │ │ └── v1 │ │ │ │ │ └── audit_data.pb.go │ │ │ ├── billing │ │ │ │ └── v1 │ │ │ │ │ └── cloud_billing.pb.go │ │ │ ├── dataproc │ │ │ │ ├── v1 │ │ │ │ │ ├── clusters.pb.go │ │ │ │ │ ├── jobs.pb.go │ │ │ │ │ └── operations.pb.go │ │ │ │ └── v1beta2 │ │ │ │ │ ├── clusters.pb.go │ │ │ │ │ ├── jobs.pb.go │ │ │ │ │ ├── operations.pb.go │ │ │ │ │ └── workflow_templates.pb.go │ │ │ ├── dialogflow │ │ │ │ └── v2beta1 │ │ │ │ │ ├── agent.pb.go │ │ │ │ │ ├── context.pb.go │ │ │ │ │ ├── entity_type.pb.go │ │ │ │ │ ├── intent.pb.go │ │ │ │ │ ├── session.pb.go │ │ │ │ │ ├── session_entity_type.pb.go │ │ │ │ │ └── webhook.pb.go │ │ │ ├── functions │ │ │ │ └── v1beta2 │ │ │ │ │ ├── functions.pb.go │ │ │ │ │ └── operations.pb.go │ │ │ ├── iot │ │ │ │ └── v1 │ │ │ │ │ ├── device_manager.pb.go │ │ │ │ │ └── resources.pb.go │ │ │ ├── language │ │ │ │ ├── v1 │ │ │ │ │ └── language_service.pb.go │ │ │ │ ├── v1beta1 │ │ │ │ │ └── language_service.pb.go │ │ │ │ └── v1beta2 │ │ │ │ │ └── language_service.pb.go │ │ │ ├── location │ │ │ │ └── locations.pb.go │ │ │ ├── ml │ │ │ │ └── v1 │ │ │ │ │ ├── job_service.pb.go │ │ │ │ │ ├── model_service.pb.go │ │ │ │ │ ├── operation_metadata.pb.go │ │ │ │ │ ├── prediction_service.pb.go │ │ │ │ │ └── project_service.pb.go │ │ │ ├── oslogin │ │ │ │ ├── common │ │ │ │ │ └── common.pb.go │ │ │ │ ├── v1 │ │ │ │ │ └── oslogin.pb.go │ │ │ │ ├── v1alpha │ │ │ │ │ └── oslogin.pb.go │ │ │ │ └── v1beta │ │ │ │ │ └── oslogin.pb.go │ │ │ ├── resourcemanager │ │ │ │ └── v2 │ │ │ │ │ └── folders.pb.go │ │ │ ├── runtimeconfig │ │ │ │ └── v1beta1 │ │ │ │ │ ├── resources.pb.go │ │ │ │ │ └── runtimeconfig.pb.go │ │ │ ├── speech │ │ │ │ ├── v1 │ │ │ │ │ └── cloud_speech.pb.go │ │ │ │ ├── v1beta1 │ │ │ │ │ └── cloud_speech.pb.go │ │ │ │ └── v1p1beta1 │ │ │ │ │ └── cloud_speech.pb.go │ │ │ ├── support │ │ │ │ ├── common │ │ │ │ │ └── common.pb.go │ │ │ │ └── v1alpha1 │ │ │ │ │ └── cloud_support.pb.go │ │ │ ├── texttospeech │ │ │ │ └── v1beta1 │ │ │ │ │ └── cloud_tts.pb.go │ │ │ ├── videointelligence │ │ │ │ ├── v1 │ │ │ │ │ └── video_intelligence.pb.go │ │ │ │ ├── v1beta1 │ │ │ │ │ └── video_intelligence.pb.go │ │ │ │ ├── v1beta2 │ │ │ │ │ └── video_intelligence.pb.go │ │ │ │ └── v1p1beta1 │ │ │ │ │ └── video_intelligence.pb.go │ │ │ └── vision │ │ │ │ ├── v1 │ │ │ │ ├── geometry.pb.go │ │ │ │ ├── image_annotator.pb.go │ │ │ │ ├── text_annotation.pb.go │ │ │ │ └── web_detection.pb.go │ │ │ │ ├── v1p1beta1 │ │ │ │ ├── geometry.pb.go │ │ │ │ ├── image_annotator.pb.go │ │ │ │ ├── text_annotation.pb.go │ │ │ │ └── web_detection.pb.go │ │ │ │ └── v1p2beta1 │ │ │ │ ├── geometry.pb.go │ │ │ │ ├── image_annotator.pb.go │ │ │ │ ├── text_annotation.pb.go │ │ │ │ └── web_detection.pb.go │ │ ├── container │ │ │ ├── v1 │ │ │ │ └── cluster_service.pb.go │ │ │ ├── v1alpha1 │ │ │ │ └── cluster_service.pb.go │ │ │ └── v1beta1 │ │ │ │ └── cluster_service.pb.go │ │ ├── datastore │ │ │ ├── admin │ │ │ │ └── v1beta1 │ │ │ │ │ └── datastore_admin.pb.go │ │ │ ├── v1 │ │ │ │ ├── datastore.pb.go │ │ │ │ ├── entity.pb.go │ │ │ │ └── query.pb.go │ │ │ └── v1beta3 │ │ │ │ ├── datastore.pb.go │ │ │ │ ├── entity.pb.go │ │ │ │ └── query.pb.go │ │ ├── devtools │ │ │ ├── build │ │ │ │ └── v1 │ │ │ │ │ ├── build_events.pb.go │ │ │ │ │ ├── build_status.pb.go │ │ │ │ │ └── publish_build_event.pb.go │ │ │ ├── cloudbuild │ │ │ │ └── v1 │ │ │ │ │ └── cloudbuild.pb.go │ │ │ ├── clouddebugger │ │ │ │ └── v2 │ │ │ │ │ ├── controller.pb.go │ │ │ │ │ ├── data.pb.go │ │ │ │ │ └── debugger.pb.go │ │ │ ├── clouderrorreporting │ │ │ │ └── v1beta1 │ │ │ │ │ ├── common.pb.go │ │ │ │ │ ├── error_group_service.pb.go │ │ │ │ │ ├── error_stats_service.pb.go │ │ │ │ │ └── report_errors_service.pb.go │ │ │ ├── cloudprofiler │ │ │ │ └── v2 │ │ │ │ │ └── profiler.pb.go │ │ │ ├── cloudtrace │ │ │ │ ├── v1 │ │ │ │ │ └── trace.pb.go │ │ │ │ └── v2 │ │ │ │ │ ├── trace.pb.go │ │ │ │ │ └── tracing.pb.go │ │ │ ├── containeranalysis │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── bill_of_materials.pb.go │ │ │ │ │ ├── containeranalysis.pb.go │ │ │ │ │ ├── image_basis.pb.go │ │ │ │ │ ├── package_vulnerability.pb.go │ │ │ │ │ ├── provenance.pb.go │ │ │ │ │ └── source_context.pb.go │ │ │ ├── remoteexecution │ │ │ │ └── v1test │ │ │ │ │ └── remote_execution.pb.go │ │ │ ├── remoteworkers │ │ │ │ └── v1test2 │ │ │ │ │ ├── bots.pb.go │ │ │ │ │ ├── command.pb.go │ │ │ │ │ └── tasks.pb.go │ │ │ ├── source │ │ │ │ └── v1 │ │ │ │ │ └── source_context.pb.go │ │ │ └── sourcerepo │ │ │ │ └── v1 │ │ │ │ └── sourcerepo.pb.go │ │ ├── example │ │ │ └── library │ │ │ │ └── v1 │ │ │ │ └── library.pb.go │ │ ├── firestore │ │ │ ├── admin │ │ │ │ └── v1beta1 │ │ │ │ │ ├── firestore_admin.pb.go │ │ │ │ │ └── index.pb.go │ │ │ └── v1beta1 │ │ │ │ ├── common.pb.go │ │ │ │ ├── document.pb.go │ │ │ │ ├── firestore.pb.go │ │ │ │ ├── query.pb.go │ │ │ │ └── write.pb.go │ │ ├── genomics │ │ │ ├── v1 │ │ │ │ ├── annotations.pb.go │ │ │ │ ├── cigar.pb.go │ │ │ │ ├── datasets.pb.go │ │ │ │ ├── operations.pb.go │ │ │ │ ├── position.pb.go │ │ │ │ ├── range.pb.go │ │ │ │ ├── readalignment.pb.go │ │ │ │ ├── readgroup.pb.go │ │ │ │ ├── readgroupset.pb.go │ │ │ │ ├── reads.pb.go │ │ │ │ ├── references.pb.go │ │ │ │ └── variants.pb.go │ │ │ └── v1alpha2 │ │ │ │ └── pipelines.pb.go │ │ ├── iam │ │ │ ├── admin │ │ │ │ └── v1 │ │ │ │ │ └── iam.pb.go │ │ │ └── v1 │ │ │ │ ├── iam_policy.pb.go │ │ │ │ ├── logging │ │ │ │ └── audit_data.pb.go │ │ │ │ └── policy.pb.go │ │ ├── logging │ │ │ ├── type │ │ │ │ ├── http_request.pb.go │ │ │ │ └── log_severity.pb.go │ │ │ └── v2 │ │ │ │ ├── log_entry.pb.go │ │ │ │ ├── logging.pb.go │ │ │ │ ├── logging_config.pb.go │ │ │ │ └── logging_metrics.pb.go │ │ ├── longrunning │ │ │ └── operations.pb.go │ │ ├── monitoring │ │ │ └── v3 │ │ │ │ ├── alert.pb.go │ │ │ │ ├── alert_service.pb.go │ │ │ │ ├── common.pb.go │ │ │ │ ├── group.pb.go │ │ │ │ ├── group_service.pb.go │ │ │ │ ├── metric.pb.go │ │ │ │ ├── metric_service.pb.go │ │ │ │ ├── mutation_record.pb.go │ │ │ │ ├── notification.pb.go │ │ │ │ ├── notification_service.pb.go │ │ │ │ ├── uptime.pb.go │ │ │ │ └── uptime_service.pb.go │ │ ├── privacy │ │ │ └── dlp │ │ │ │ ├── v2 │ │ │ │ ├── dlp.pb.go │ │ │ │ └── storage.pb.go │ │ │ │ ├── v2beta1 │ │ │ │ ├── dlp.pb.go │ │ │ │ └── storage.pb.go │ │ │ │ └── v2beta2 │ │ │ │ ├── dlp.pb.go │ │ │ │ └── storage.pb.go │ │ ├── pubsub │ │ │ ├── v1 │ │ │ │ └── pubsub.pb.go │ │ │ └── v1beta2 │ │ │ │ └── pubsub.pb.go │ │ ├── rpc │ │ │ ├── code │ │ │ │ └── code.pb.go │ │ │ ├── errdetails │ │ │ │ └── error_details.pb.go │ │ │ └── status │ │ │ │ └── status.pb.go │ │ ├── spanner │ │ │ ├── admin │ │ │ │ ├── database │ │ │ │ │ └── v1 │ │ │ │ │ │ └── spanner_database_admin.pb.go │ │ │ │ └── instance │ │ │ │ │ └── v1 │ │ │ │ │ └── spanner_instance_admin.pb.go │ │ │ └── v1 │ │ │ │ ├── keys.pb.go │ │ │ │ ├── mutation.pb.go │ │ │ │ ├── query_plan.pb.go │ │ │ │ ├── result_set.pb.go │ │ │ │ ├── spanner.pb.go │ │ │ │ ├── transaction.pb.go │ │ │ │ └── type.pb.go │ │ ├── storagetransfer │ │ │ └── v1 │ │ │ │ ├── transfer.pb.go │ │ │ │ └── transfer_types.pb.go │ │ ├── streetview │ │ │ └── publish │ │ │ │ └── v1 │ │ │ │ ├── resources.pb.go │ │ │ │ ├── rpcmessages.pb.go │ │ │ │ └── streetview_publish.pb.go │ │ ├── type │ │ │ ├── color │ │ │ │ └── color.pb.go │ │ │ ├── date │ │ │ │ └── date.pb.go │ │ │ ├── dayofweek │ │ │ │ └── dayofweek.pb.go │ │ │ ├── latlng │ │ │ │ └── latlng.pb.go │ │ │ ├── money │ │ │ │ └── money.pb.go │ │ │ ├── postaladdress │ │ │ │ └── postal_address.pb.go │ │ │ └── timeofday │ │ │ │ └── timeofday.pb.go │ │ └── watcher │ │ │ └── v1 │ │ │ └── watch.pb.go │ ├── protobuf │ │ ├── api │ │ │ └── api.pb.go │ │ ├── field_mask │ │ │ └── field_mask.pb.go │ │ ├── ptype │ │ │ └── type.pb.go │ │ └── source_context │ │ │ └── source_context.pb.go │ ├── regen.go │ └── regen.sh │ └── grpc │ ├── .github │ └── ISSUE_TEMPLATE │ ├── .travis.yml │ ├── AUTHORS │ ├── CONTRIBUTING.md │ ├── Documentation │ ├── compression.md │ ├── encoding.md │ ├── gomock-example.md │ ├── grpc-auth-support.md │ ├── grpc-metadata.md │ ├── server-reflection-tutorial.md │ └── versioning.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── backoff.go │ ├── backoff_test.go │ ├── balancer.go │ ├── balancer │ ├── balancer.go │ ├── base │ │ ├── balancer.go │ │ └── base.go │ └── roundrobin │ │ ├── roundrobin.go │ │ └── roundrobin_test.go │ ├── balancer_conn_wrappers.go │ ├── balancer_switching_test.go │ ├── balancer_test.go │ ├── balancer_v1_wrapper.go │ ├── benchmark │ ├── benchmain │ │ └── main.go │ ├── benchmark.go │ ├── benchmark16_test.go │ ├── benchmark17_test.go │ ├── benchresult │ │ └── main.go │ ├── client │ │ └── main.go │ ├── grpc_testing │ │ ├── control.pb.go │ │ ├── control.proto │ │ ├── messages.pb.go │ │ ├── messages.proto │ │ ├── payloads.pb.go │ │ ├── payloads.proto │ │ ├── services.pb.go │ │ ├── services.proto │ │ ├── stats.pb.go │ │ └── stats.proto │ ├── latency │ │ ├── latency.go │ │ └── latency_test.go │ ├── primitives │ │ ├── code_string_test.go │ │ ├── context_test.go │ │ └── primitives_test.go │ ├── server │ │ └── main.go │ ├── stats │ │ ├── histogram.go │ │ ├── stats.go │ │ └── util.go │ └── worker │ │ ├── benchmark_client.go │ │ ├── benchmark_server.go │ │ ├── main.go │ │ └── util.go │ ├── call.go │ ├── call_test.go │ ├── clientconn.go │ ├── clientconn_test.go │ ├── codec.go │ ├── codec_test.go │ ├── codegen.sh │ ├── codes │ ├── code_string.go │ ├── codes.go │ └── codes_test.go │ ├── connectivity │ └── connectivity.go │ ├── credentials │ ├── credentials.go │ ├── credentials_test.go │ ├── credentials_util_go17.go │ ├── credentials_util_go18.go │ ├── credentials_util_pre_go17.go │ └── oauth │ │ └── oauth.go │ ├── doc.go │ ├── encoding │ ├── encoding.go │ ├── gzip │ │ └── gzip.go │ └── proto │ │ ├── proto.go │ │ ├── proto_benchmark_test.go │ │ └── proto_test.go │ ├── examples │ ├── README.md │ ├── gotutorial.md │ ├── helloworld │ │ ├── greeter_client │ │ │ └── main.go │ │ ├── greeter_server │ │ │ └── main.go │ │ ├── helloworld │ │ │ ├── helloworld.pb.go │ │ │ └── helloworld.proto │ │ └── mock_helloworld │ │ │ ├── hw_mock.go │ │ │ └── hw_mock_test.go │ └── route_guide │ │ ├── README.md │ │ ├── client │ │ └── client.go │ │ ├── mock_routeguide │ │ ├── rg_mock.go │ │ └── rg_mock_test.go │ │ ├── routeguide │ │ ├── route_guide.pb.go │ │ └── route_guide.proto │ │ ├── server │ │ └── server.go │ │ └── testdata │ │ └── route_guide_db.json │ ├── go16.go │ ├── go17.go │ ├── grpclb.go │ ├── grpclb │ ├── grpc_lb_v1 │ │ ├── messages │ │ │ ├── messages.pb.go │ │ │ └── messages.proto │ │ └── service │ │ │ ├── service.pb.go │ │ │ └── service.proto │ └── grpclb_test.go │ ├── grpclb_picker.go │ ├── grpclb_remote_balancer.go │ ├── grpclb_util.go │ ├── grpclog │ ├── glogger │ │ └── glogger.go │ ├── grpclog.go │ ├── logger.go │ ├── loggerv2.go │ └── loggerv2_test.go │ ├── health │ ├── grpc_health_v1 │ │ ├── health.pb.go │ │ └── health.proto │ └── health.go │ ├── interceptor.go │ ├── internal │ └── internal.go │ ├── interop │ ├── client │ │ └── client.go │ ├── grpc_testing │ │ ├── test.pb.go │ │ └── test.proto │ ├── http2 │ │ └── negative_http2_client.go │ ├── server │ │ └── server.go │ └── test_utils.go │ ├── keepalive │ └── keepalive.go │ ├── metadata │ ├── metadata.go │ └── metadata_test.go │ ├── naming │ ├── dns_resolver.go │ ├── dns_resolver_test.go │ ├── go17.go │ ├── go17_test.go │ ├── go18.go │ ├── go18_test.go │ └── naming.go │ ├── peer │ └── peer.go │ ├── picker_wrapper.go │ ├── picker_wrapper_test.go │ ├── pickfirst.go │ ├── pickfirst_test.go │ ├── proxy.go │ ├── proxy_test.go │ ├── reflection │ ├── README.md │ ├── grpc_reflection_v1alpha │ │ ├── reflection.pb.go │ │ └── reflection.proto │ ├── grpc_testing │ │ ├── proto2.pb.go │ │ ├── proto2.proto │ │ ├── proto2_ext.pb.go │ │ ├── proto2_ext.proto │ │ ├── proto2_ext2.pb.go │ │ ├── proto2_ext2.proto │ │ ├── test.pb.go │ │ └── test.proto │ ├── grpc_testingv3 │ │ ├── testv3.pb.go │ │ └── testv3.proto │ ├── serverreflection.go │ └── serverreflection_test.go │ ├── resolver │ ├── dns │ │ ├── dns_resolver.go │ │ ├── dns_resolver_test.go │ │ ├── go17.go │ │ ├── go17_test.go │ │ ├── go18.go │ │ └── go18_test.go │ ├── manual │ │ └── manual.go │ ├── passthrough │ │ └── passthrough.go │ └── resolver.go │ ├── resolver_conn_wrapper.go │ ├── resolver_conn_wrapper_test.go │ ├── rpc_util.go │ ├── rpc_util_test.go │ ├── server.go │ ├── server_test.go │ ├── service_config.go │ ├── service_config_test.go │ ├── stats │ ├── grpc_testing │ │ ├── test.pb.go │ │ └── test.proto │ ├── handlers.go │ ├── stats.go │ └── stats_test.go │ ├── status │ ├── status.go │ └── status_test.go │ ├── stream.go │ ├── stress │ ├── client │ │ └── main.go │ ├── grpc_testing │ │ ├── metrics.pb.go │ │ └── metrics.proto │ └── metrics_client │ │ └── main.go │ ├── tap │ └── tap.go │ ├── test │ ├── bufconn │ │ ├── bufconn.go │ │ └── bufconn_test.go │ ├── codec_perf │ │ ├── perf.pb.go │ │ └── perf.proto │ ├── end2end_test.go │ ├── gracefulstop_test.go │ ├── grpc_testing │ │ ├── test.pb.go │ │ └── test.proto │ ├── leakcheck │ │ ├── leakcheck.go │ │ └── leakcheck_test.go │ ├── race.go │ └── servertester.go │ ├── testdata │ ├── ca.pem │ ├── server1.key │ ├── server1.pem │ └── testdata.go │ ├── trace.go │ ├── transport │ ├── bdp_estimator.go │ ├── control.go │ ├── go16.go │ ├── go17.go │ ├── handler_server.go │ ├── handler_server_test.go │ ├── http2_client.go │ ├── http2_server.go │ ├── http_util.go │ ├── http_util_test.go │ ├── log.go │ ├── transport.go │ └── transport_test.go │ └── vet.sh ├── product-service ├── .gitignore ├── Dockerfile ├── Gopkg.lock ├── Gopkg.toml ├── database │ └── product.go ├── main.go ├── pb │ └── product.pb.go ├── product │ ├── encode_decode.go │ ├── endpoint.go │ ├── grpc.go │ └── service.go ├── runner.conf └── vendor │ ├── github.com │ ├── go-kit │ │ └── kit │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── auth │ │ │ ├── basic │ │ │ │ ├── README.md │ │ │ │ ├── middleware.go │ │ │ │ └── middleware_test.go │ │ │ └── jwt │ │ │ │ ├── README.md │ │ │ │ ├── middleware.go │ │ │ │ ├── middleware_test.go │ │ │ │ ├── transport.go │ │ │ │ └── transport_test.go │ │ │ ├── circle.yml │ │ │ ├── circuitbreaker │ │ │ ├── doc.go │ │ │ ├── gobreaker.go │ │ │ ├── gobreaker_test.go │ │ │ ├── handy_breaker.go │ │ │ ├── handy_breaker_test.go │ │ │ ├── hystrix.go │ │ │ ├── hystrix_test.go │ │ │ └── util_test.go │ │ │ ├── cmd │ │ │ └── kitgen │ │ │ │ ├── .ignore │ │ │ │ ├── arg.go │ │ │ │ ├── ast_helpers.go │ │ │ │ ├── ast_templates.go │ │ │ │ ├── deflayout.go │ │ │ │ ├── flatlayout.go │ │ │ │ ├── interface.go │ │ │ │ ├── main.go │ │ │ │ ├── main_test.go │ │ │ │ ├── method.go │ │ │ │ ├── parsevisitor.go │ │ │ │ ├── path_test.go │ │ │ │ ├── replacewalk.go │ │ │ │ ├── sourcecontext.go │ │ │ │ ├── templates │ │ │ │ └── full.go │ │ │ │ ├── testdata │ │ │ │ ├── anonfields │ │ │ │ │ ├── default │ │ │ │ │ │ ├── endpoints │ │ │ │ │ │ │ └── endpoints.go │ │ │ │ │ │ ├── http │ │ │ │ │ │ │ └── http.go │ │ │ │ │ │ └── service │ │ │ │ │ │ │ └── service.go │ │ │ │ │ ├── flat │ │ │ │ │ │ └── gokit.go │ │ │ │ │ └── in.go │ │ │ │ ├── foo │ │ │ │ │ ├── default │ │ │ │ │ │ ├── endpoints │ │ │ │ │ │ │ └── endpoints.go │ │ │ │ │ │ ├── http │ │ │ │ │ │ │ └── http.go │ │ │ │ │ │ └── service │ │ │ │ │ │ │ └── service.go │ │ │ │ │ ├── flat │ │ │ │ │ │ └── gokit.go │ │ │ │ │ └── in.go │ │ │ │ ├── profilesvc │ │ │ │ │ ├── default │ │ │ │ │ │ ├── endpoints │ │ │ │ │ │ │ └── endpoints.go │ │ │ │ │ │ ├── http │ │ │ │ │ │ │ └── http.go │ │ │ │ │ │ └── service │ │ │ │ │ │ │ └── service.go │ │ │ │ │ ├── flat │ │ │ │ │ │ └── gokit.go │ │ │ │ │ └── in.go │ │ │ │ ├── stringservice │ │ │ │ │ ├── default │ │ │ │ │ │ ├── endpoints │ │ │ │ │ │ │ └── endpoints.go │ │ │ │ │ │ ├── http │ │ │ │ │ │ │ └── http.go │ │ │ │ │ │ └── service │ │ │ │ │ │ │ └── service.go │ │ │ │ │ ├── flat │ │ │ │ │ │ └── gokit.go │ │ │ │ │ └── in.go │ │ │ │ └── underscores │ │ │ │ │ ├── default │ │ │ │ │ ├── endpoints │ │ │ │ │ │ └── endpoints.go │ │ │ │ │ ├── http │ │ │ │ │ │ └── http.go │ │ │ │ │ └── service │ │ │ │ │ │ └── service.go │ │ │ │ │ ├── flat │ │ │ │ │ └── gokit.go │ │ │ │ │ └── in.go │ │ │ │ └── transform.go │ │ │ ├── coveralls.bash │ │ │ ├── docker-compose-integration.yml │ │ │ ├── endpoint │ │ │ ├── doc.go │ │ │ ├── endpoint.go │ │ │ └── endpoint_example_test.go │ │ │ ├── examples │ │ │ ├── README.md │ │ │ ├── addsvc │ │ │ │ ├── README.md │ │ │ │ ├── cmd │ │ │ │ │ ├── addcli │ │ │ │ │ │ └── addcli.go │ │ │ │ │ └── addsvc │ │ │ │ │ │ ├── addsvc.go │ │ │ │ │ │ ├── pact_test.go │ │ │ │ │ │ └── wiring_test.go │ │ │ │ ├── pb │ │ │ │ │ ├── addsvc.pb.go │ │ │ │ │ ├── addsvc.proto │ │ │ │ │ └── compile.sh │ │ │ │ ├── pkg │ │ │ │ │ ├── addendpoint │ │ │ │ │ │ ├── middleware.go │ │ │ │ │ │ └── set.go │ │ │ │ │ ├── addservice │ │ │ │ │ │ ├── middleware.go │ │ │ │ │ │ └── service.go │ │ │ │ │ └── addtransport │ │ │ │ │ │ ├── grpc.go │ │ │ │ │ │ ├── http.go │ │ │ │ │ │ ├── jsonrpc.go │ │ │ │ │ │ └── thrift.go │ │ │ │ └── thrift │ │ │ │ │ ├── addsvc.thrift │ │ │ │ │ ├── compile.sh │ │ │ │ │ └── gen-go │ │ │ │ │ └── addsvc │ │ │ │ │ ├── GoUnusedProtection__.go │ │ │ │ │ ├── add_service-remote │ │ │ │ │ └── add_service-remote.go │ │ │ │ │ ├── addsvc-consts.go │ │ │ │ │ └── addsvc.go │ │ │ ├── apigateway │ │ │ │ └── main.go │ │ │ ├── profilesvc │ │ │ │ ├── README.md │ │ │ │ ├── client │ │ │ │ │ └── client.go │ │ │ │ ├── cmd │ │ │ │ │ └── profilesvc │ │ │ │ │ │ └── main.go │ │ │ │ ├── endpoints.go │ │ │ │ ├── middlewares.go │ │ │ │ ├── service.go │ │ │ │ └── transport.go │ │ │ ├── shipping │ │ │ │ ├── README.md │ │ │ │ ├── booking │ │ │ │ │ ├── endpoint.go │ │ │ │ │ ├── instrumenting.go │ │ │ │ │ ├── logging.go │ │ │ │ │ ├── service.go │ │ │ │ │ └── transport.go │ │ │ │ ├── cargo │ │ │ │ │ ├── cargo.go │ │ │ │ │ ├── delivery.go │ │ │ │ │ ├── handling.go │ │ │ │ │ └── itinerary.go │ │ │ │ ├── handling │ │ │ │ │ ├── endpoint.go │ │ │ │ │ ├── instrumenting.go │ │ │ │ │ ├── logging.go │ │ │ │ │ ├── service.go │ │ │ │ │ └── transport.go │ │ │ │ ├── inmem │ │ │ │ │ └── inmem.go │ │ │ │ ├── inspection │ │ │ │ │ └── inspection.go │ │ │ │ ├── location │ │ │ │ │ ├── location.go │ │ │ │ │ └── sample_locations.go │ │ │ │ ├── main.go │ │ │ │ ├── routing │ │ │ │ │ ├── proxying.go │ │ │ │ │ └── routing.go │ │ │ │ ├── tracking │ │ │ │ │ ├── endpoint.go │ │ │ │ │ ├── instrumenting.go │ │ │ │ │ ├── logging.go │ │ │ │ │ ├── service.go │ │ │ │ │ └── transport.go │ │ │ │ └── voyage │ │ │ │ │ ├── sample_voyages.go │ │ │ │ │ └── voyage.go │ │ │ ├── stringsvc1 │ │ │ │ └── main.go │ │ │ ├── stringsvc2 │ │ │ │ ├── instrumenting.go │ │ │ │ ├── logging.go │ │ │ │ ├── main.go │ │ │ │ ├── service.go │ │ │ │ └── transport.go │ │ │ └── stringsvc3 │ │ │ │ ├── instrumenting.go │ │ │ │ ├── logging.go │ │ │ │ ├── main.go │ │ │ │ ├── proxying.go │ │ │ │ ├── service.go │ │ │ │ └── transport.go │ │ │ ├── lint │ │ │ ├── log │ │ │ ├── README.md │ │ │ ├── benchmark_test.go │ │ │ ├── concurrency_test.go │ │ │ ├── deprecated_levels │ │ │ │ ├── levels.go │ │ │ │ └── levels_test.go │ │ │ ├── doc.go │ │ │ ├── example_test.go │ │ │ ├── json_logger.go │ │ │ ├── json_logger_test.go │ │ │ ├── level │ │ │ │ ├── benchmark_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── example_test.go │ │ │ │ ├── level.go │ │ │ │ └── level_test.go │ │ │ ├── log.go │ │ │ ├── log_test.go │ │ │ ├── logfmt_logger.go │ │ │ ├── logfmt_logger_test.go │ │ │ ├── nop_logger.go │ │ │ ├── nop_logger_test.go │ │ │ ├── stdlib.go │ │ │ ├── stdlib_test.go │ │ │ ├── sync.go │ │ │ ├── sync_test.go │ │ │ ├── syslog │ │ │ │ ├── example_test.go │ │ │ │ ├── syslog.go │ │ │ │ └── syslog_test.go │ │ │ ├── term │ │ │ │ ├── LICENSE │ │ │ │ ├── colorlogger.go │ │ │ │ ├── colorlogger_test.go │ │ │ │ ├── colorwriter_others.go │ │ │ │ ├── colorwriter_windows.go │ │ │ │ ├── example_test.go │ │ │ │ ├── term.go │ │ │ │ ├── terminal_appengine.go │ │ │ │ ├── terminal_darwin.go │ │ │ │ ├── terminal_freebsd.go │ │ │ │ ├── terminal_linux.go │ │ │ │ ├── terminal_notwindows.go │ │ │ │ ├── terminal_openbsd.go │ │ │ │ ├── terminal_windows.go │ │ │ │ └── terminal_windows_test.go │ │ │ ├── value.go │ │ │ └── value_test.go │ │ │ ├── metrics │ │ │ ├── README.md │ │ │ ├── cloudwatch │ │ │ │ ├── cloudwatch.go │ │ │ │ └── cloudwatch_test.go │ │ │ ├── cloudwatch2 │ │ │ │ ├── cloudwatch2.go │ │ │ │ └── cloudwatch2_test.go │ │ │ ├── discard │ │ │ │ └── discard.go │ │ │ ├── doc.go │ │ │ ├── dogstatsd │ │ │ │ ├── dogstatsd.go │ │ │ │ └── dogstatsd_test.go │ │ │ ├── expvar │ │ │ │ ├── expvar.go │ │ │ │ └── expvar_test.go │ │ │ ├── generic │ │ │ │ ├── generic.go │ │ │ │ └── generic_test.go │ │ │ ├── graphite │ │ │ │ ├── graphite.go │ │ │ │ └── graphite_test.go │ │ │ ├── influx │ │ │ │ ├── example_test.go │ │ │ │ ├── influx.go │ │ │ │ └── influx_test.go │ │ │ ├── internal │ │ │ │ ├── convert │ │ │ │ │ ├── convert.go │ │ │ │ │ └── convert_test.go │ │ │ │ ├── lv │ │ │ │ │ ├── labelvalues.go │ │ │ │ │ ├── labelvalues_test.go │ │ │ │ │ ├── space.go │ │ │ │ │ └── space_test.go │ │ │ │ └── ratemap │ │ │ │ │ └── ratemap.go │ │ │ ├── metrics.go │ │ │ ├── multi │ │ │ │ ├── multi.go │ │ │ │ └── multi_test.go │ │ │ ├── pcp │ │ │ │ ├── pcp.go │ │ │ │ └── pcp_test.go │ │ │ ├── prometheus │ │ │ │ ├── prometheus.go │ │ │ │ └── prometheus_test.go │ │ │ ├── provider │ │ │ │ ├── discard.go │ │ │ │ ├── dogstatsd.go │ │ │ │ ├── expvar.go │ │ │ │ ├── graphite.go │ │ │ │ ├── influx.go │ │ │ │ ├── prometheus.go │ │ │ │ ├── provider.go │ │ │ │ └── statsd.go │ │ │ ├── statsd │ │ │ │ ├── statsd.go │ │ │ │ └── statsd_test.go │ │ │ ├── teststat │ │ │ │ ├── buffers.go │ │ │ │ ├── populate.go │ │ │ │ └── teststat.go │ │ │ ├── timer.go │ │ │ └── timer_test.go │ │ │ ├── ratelimit │ │ │ ├── token_bucket.go │ │ │ └── token_bucket_test.go │ │ │ ├── sd │ │ │ ├── benchmark_test.go │ │ │ ├── consul │ │ │ │ ├── client.go │ │ │ │ ├── client_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── instancer.go │ │ │ │ ├── instancer_test.go │ │ │ │ ├── integration_test.go │ │ │ │ ├── registrar.go │ │ │ │ └── registrar_test.go │ │ │ ├── dnssrv │ │ │ │ ├── doc.go │ │ │ │ ├── instancer.go │ │ │ │ ├── instancer_test.go │ │ │ │ └── lookup.go │ │ │ ├── doc.go │ │ │ ├── endpoint_cache.go │ │ │ ├── endpoint_cache_test.go │ │ │ ├── endpointer.go │ │ │ ├── endpointer_test.go │ │ │ ├── etcd │ │ │ │ ├── client.go │ │ │ │ ├── client_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── example_test.go │ │ │ │ ├── instancer.go │ │ │ │ ├── instancer_test.go │ │ │ │ ├── integration_test.go │ │ │ │ ├── registrar.go │ │ │ │ └── registrar_test.go │ │ │ ├── etcdv3 │ │ │ │ ├── client.go │ │ │ │ ├── doc.go │ │ │ │ ├── example_test.go │ │ │ │ ├── instancer.go │ │ │ │ ├── instancer_test.go │ │ │ │ ├── integration_test.go │ │ │ │ ├── registrar.go │ │ │ │ └── registrar_test.go │ │ │ ├── eureka │ │ │ │ ├── doc.go │ │ │ │ ├── instancer.go │ │ │ │ ├── instancer_test.go │ │ │ │ ├── integration_test.go │ │ │ │ ├── registrar.go │ │ │ │ ├── registrar_test.go │ │ │ │ └── util_test.go │ │ │ ├── factory.go │ │ │ ├── instancer.go │ │ │ ├── internal │ │ │ │ └── instance │ │ │ │ │ ├── cache.go │ │ │ │ │ └── cache_test.go │ │ │ ├── lb │ │ │ │ ├── balancer.go │ │ │ │ ├── doc.go │ │ │ │ ├── random.go │ │ │ │ ├── random_test.go │ │ │ │ ├── retry.go │ │ │ │ ├── retry_test.go │ │ │ │ ├── round_robin.go │ │ │ │ └── round_robin_test.go │ │ │ ├── registrar.go │ │ │ └── zk │ │ │ │ ├── client.go │ │ │ │ ├── client_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── instancer.go │ │ │ │ ├── instancer_test.go │ │ │ │ ├── integration_test.go │ │ │ │ ├── logwrapper.go │ │ │ │ ├── registrar.go │ │ │ │ └── util_test.go │ │ │ ├── tracing │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── opentracing │ │ │ │ ├── doc.go │ │ │ │ ├── endpoint.go │ │ │ │ ├── endpoint_test.go │ │ │ │ ├── grpc.go │ │ │ │ ├── grpc_test.go │ │ │ │ ├── http.go │ │ │ │ └── http_test.go │ │ │ └── zipkin │ │ │ │ ├── README.md │ │ │ │ ├── doc.go │ │ │ │ ├── endpoint.go │ │ │ │ ├── endpoint_test.go │ │ │ │ ├── grpc.go │ │ │ │ ├── grpc_test.go │ │ │ │ ├── http.go │ │ │ │ ├── http_test.go │ │ │ │ └── options.go │ │ │ ├── transport │ │ │ ├── doc.go │ │ │ ├── grpc │ │ │ │ ├── README.md │ │ │ │ ├── _grpc_test │ │ │ │ │ ├── client.go │ │ │ │ │ ├── context_metadata.go │ │ │ │ │ ├── pb │ │ │ │ │ │ ├── generate.go │ │ │ │ │ │ ├── test.pb.go │ │ │ │ │ │ └── test.proto │ │ │ │ │ ├── request_response.go │ │ │ │ │ ├── server.go │ │ │ │ │ └── service.go │ │ │ │ ├── client.go │ │ │ │ ├── client_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── encode_decode.go │ │ │ │ ├── request_response_funcs.go │ │ │ │ └── server.go │ │ │ ├── http │ │ │ │ ├── client.go │ │ │ │ ├── client_test.go │ │ │ │ ├── doc.go │ │ │ │ ├── encode_decode.go │ │ │ │ ├── example_test.go │ │ │ │ ├── jsonrpc │ │ │ │ │ ├── README.md │ │ │ │ │ ├── client.go │ │ │ │ │ ├── client_test.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── encode_decode.go │ │ │ │ │ ├── error.go │ │ │ │ │ ├── error_test.go │ │ │ │ │ ├── request_response_types.go │ │ │ │ │ ├── request_response_types_test.go │ │ │ │ │ ├── server.go │ │ │ │ │ └── server_test.go │ │ │ │ ├── request_response_funcs.go │ │ │ │ ├── request_response_funcs_test.go │ │ │ │ ├── server.go │ │ │ │ └── server_test.go │ │ │ ├── httprp │ │ │ │ ├── doc.go │ │ │ │ ├── server.go │ │ │ │ └── server_test.go │ │ │ ├── netrpc │ │ │ │ └── README.md │ │ │ └── thrift │ │ │ │ └── README.md │ │ │ ├── update_deps.bash │ │ │ └── util │ │ │ ├── README.md │ │ │ └── conn │ │ │ ├── doc.go │ │ │ ├── manager.go │ │ │ └── manager_test.go │ ├── go-logfmt │ │ └── logfmt │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── decode-bench_test.go │ │ │ ├── decode.go │ │ │ ├── decode_test.go │ │ │ ├── doc.go │ │ │ ├── encode.go │ │ │ ├── encode_internal_test.go │ │ │ ├── encode_test.go │ │ │ ├── example_test.go │ │ │ ├── fuzz.go │ │ │ └── jsonstring.go │ ├── go-stack │ │ └── stack │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── format_test.go │ │ │ ├── stack-go19_test.go │ │ │ ├── stack.go │ │ │ └── stack_test.go │ ├── golang │ │ └── protobuf │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── Make.protobuf │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── _conformance │ │ │ ├── Makefile │ │ │ ├── conformance.go │ │ │ └── conformance_proto │ │ │ │ ├── conformance.pb.go │ │ │ │ └── conformance.proto │ │ │ ├── descriptor │ │ │ ├── descriptor.go │ │ │ └── descriptor_test.go │ │ │ ├── jsonpb │ │ │ ├── jsonpb.go │ │ │ ├── jsonpb_test.go │ │ │ └── jsonpb_test_proto │ │ │ │ ├── Makefile │ │ │ │ ├── more_test_objects.pb.go │ │ │ │ ├── more_test_objects.proto │ │ │ │ ├── test_objects.pb.go │ │ │ │ └── test_objects.proto │ │ │ ├── proto │ │ │ ├── Makefile │ │ │ ├── all_test.go │ │ │ ├── any_test.go │ │ │ ├── clone.go │ │ │ ├── clone_test.go │ │ │ ├── decode.go │ │ │ ├── decode_test.go │ │ │ ├── discard.go │ │ │ ├── encode.go │ │ │ ├── encode_test.go │ │ │ ├── equal.go │ │ │ ├── equal_test.go │ │ │ ├── extensions.go │ │ │ ├── extensions_test.go │ │ │ ├── lib.go │ │ │ ├── map_test.go │ │ │ ├── message_set.go │ │ │ ├── message_set_test.go │ │ │ ├── pointer_reflect.go │ │ │ ├── pointer_unsafe.go │ │ │ ├── properties.go │ │ │ ├── proto3_proto │ │ │ │ ├── proto3.pb.go │ │ │ │ └── proto3.proto │ │ │ ├── proto3_test.go │ │ │ ├── size2_test.go │ │ │ ├── size_test.go │ │ │ ├── testdata │ │ │ │ ├── Makefile │ │ │ │ ├── golden_test.go │ │ │ │ ├── test.pb.go │ │ │ │ └── test.proto │ │ │ ├── text.go │ │ │ ├── text_parser.go │ │ │ ├── text_parser_test.go │ │ │ └── text_test.go │ │ │ ├── protoc-gen-go │ │ │ ├── Makefile │ │ │ ├── descriptor │ │ │ │ ├── Makefile │ │ │ │ ├── descriptor.pb.go │ │ │ │ └── descriptor.proto │ │ │ ├── doc.go │ │ │ ├── generator │ │ │ │ ├── Makefile │ │ │ │ ├── generator.go │ │ │ │ └── name_test.go │ │ │ ├── grpc │ │ │ │ └── grpc.go │ │ │ ├── link_grpc.go │ │ │ ├── main.go │ │ │ ├── plugin │ │ │ │ ├── Makefile │ │ │ │ ├── plugin.pb.go │ │ │ │ ├── plugin.pb.golden │ │ │ │ └── plugin.proto │ │ │ └── testdata │ │ │ │ ├── Makefile │ │ │ │ ├── extension_base.proto │ │ │ │ ├── extension_extra.proto │ │ │ │ ├── extension_test.go │ │ │ │ ├── extension_user.proto │ │ │ │ ├── grpc.proto │ │ │ │ ├── imp.pb.go.golden │ │ │ │ ├── imp.proto │ │ │ │ ├── imp2.proto │ │ │ │ ├── imp3.proto │ │ │ │ ├── main_test.go │ │ │ │ ├── multi │ │ │ │ ├── multi1.proto │ │ │ │ ├── multi2.proto │ │ │ │ └── multi3.proto │ │ │ │ ├── my_test │ │ │ │ ├── test.pb.go │ │ │ │ ├── test.pb.go.golden │ │ │ │ └── test.proto │ │ │ │ └── proto3.proto │ │ │ └── ptypes │ │ │ ├── any.go │ │ │ ├── any │ │ │ ├── any.pb.go │ │ │ └── any.proto │ │ │ ├── any_test.go │ │ │ ├── doc.go │ │ │ ├── duration.go │ │ │ ├── duration │ │ │ ├── duration.pb.go │ │ │ └── duration.proto │ │ │ ├── duration_test.go │ │ │ ├── empty │ │ │ ├── empty.pb.go │ │ │ └── empty.proto │ │ │ ├── regen.sh │ │ │ ├── struct │ │ │ ├── struct.pb.go │ │ │ └── struct.proto │ │ │ ├── timestamp.go │ │ │ ├── timestamp │ │ │ ├── timestamp.pb.go │ │ │ └── timestamp.proto │ │ │ ├── timestamp_test.go │ │ │ └── wrappers │ │ │ ├── wrappers.pb.go │ │ │ └── wrappers.proto │ └── kr │ │ └── logfmt │ │ ├── .gitignore │ │ ├── Readme │ │ ├── bench_test.go │ │ ├── decode.go │ │ ├── decode_test.go │ │ ├── example_test.go │ │ ├── scanner.go │ │ ├── scanner_test.go │ │ └── unquote.go │ ├── golang.org │ └── x │ │ ├── net │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README.md │ │ ├── bpf │ │ │ ├── asm.go │ │ │ ├── constants.go │ │ │ ├── doc.go │ │ │ ├── instructions.go │ │ │ ├── instructions_test.go │ │ │ ├── setter.go │ │ │ ├── testdata │ │ │ │ ├── all_instructions.bpf │ │ │ │ └── all_instructions.txt │ │ │ ├── vm.go │ │ │ ├── vm_aluop_test.go │ │ │ ├── vm_bpf_test.go │ │ │ ├── vm_extension_test.go │ │ │ ├── vm_instructions.go │ │ │ ├── vm_jump_test.go │ │ │ ├── vm_load_test.go │ │ │ ├── vm_ret_test.go │ │ │ ├── vm_scratch_test.go │ │ │ └── vm_test.go │ │ ├── codereview.cfg │ │ ├── context │ │ │ ├── context.go │ │ │ ├── context_test.go │ │ │ ├── ctxhttp │ │ │ │ ├── ctxhttp.go │ │ │ │ ├── ctxhttp_17_test.go │ │ │ │ ├── ctxhttp_pre17.go │ │ │ │ ├── ctxhttp_pre17_test.go │ │ │ │ └── ctxhttp_test.go │ │ │ ├── go17.go │ │ │ ├── go19.go │ │ │ ├── pre_go17.go │ │ │ ├── pre_go19.go │ │ │ └── withtimeout_test.go │ │ ├── dict │ │ │ └── dict.go │ │ ├── dns │ │ │ └── dnsmessage │ │ │ │ ├── example_test.go │ │ │ │ ├── message.go │ │ │ │ └── message_test.go │ │ ├── html │ │ │ ├── atom │ │ │ │ ├── atom.go │ │ │ │ ├── atom_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── table.go │ │ │ │ └── table_test.go │ │ │ ├── charset │ │ │ │ ├── charset.go │ │ │ │ ├── charset_test.go │ │ │ │ └── testdata │ │ │ │ │ ├── HTTP-charset.html │ │ │ │ │ ├── HTTP-vs-UTF-8-BOM.html │ │ │ │ │ ├── HTTP-vs-meta-charset.html │ │ │ │ │ ├── HTTP-vs-meta-content.html │ │ │ │ │ ├── No-encoding-declaration.html │ │ │ │ │ ├── README │ │ │ │ │ ├── UTF-16BE-BOM.html │ │ │ │ │ ├── UTF-16LE-BOM.html │ │ │ │ │ ├── UTF-8-BOM-vs-meta-charset.html │ │ │ │ │ ├── UTF-8-BOM-vs-meta-content.html │ │ │ │ │ ├── meta-charset-attribute.html │ │ │ │ │ └── meta-content-attribute.html │ │ │ ├── const.go │ │ │ ├── doc.go │ │ │ ├── doctype.go │ │ │ ├── entity.go │ │ │ ├── entity_test.go │ │ │ ├── escape.go │ │ │ ├── escape_test.go │ │ │ ├── example_test.go │ │ │ ├── foreign.go │ │ │ ├── node.go │ │ │ ├── node_test.go │ │ │ ├── parse.go │ │ │ ├── parse_test.go │ │ │ ├── render.go │ │ │ ├── render_test.go │ │ │ ├── testdata │ │ │ │ ├── go1.html │ │ │ │ └── webkit │ │ │ │ │ ├── README │ │ │ │ │ ├── adoption01.dat │ │ │ │ │ ├── adoption02.dat │ │ │ │ │ ├── comments01.dat │ │ │ │ │ ├── doctype01.dat │ │ │ │ │ ├── entities01.dat │ │ │ │ │ ├── entities02.dat │ │ │ │ │ ├── html5test-com.dat │ │ │ │ │ ├── inbody01.dat │ │ │ │ │ ├── isindex.dat │ │ │ │ │ ├── pending-spec-changes-plain-text-unsafe.dat │ │ │ │ │ ├── pending-spec-changes.dat │ │ │ │ │ ├── plain-text-unsafe.dat │ │ │ │ │ ├── scriptdata01.dat │ │ │ │ │ ├── scripted │ │ │ │ │ ├── adoption01.dat │ │ │ │ │ └── webkit01.dat │ │ │ │ │ ├── tables01.dat │ │ │ │ │ ├── tests1.dat │ │ │ │ │ ├── tests10.dat │ │ │ │ │ ├── tests11.dat │ │ │ │ │ ├── tests12.dat │ │ │ │ │ ├── tests14.dat │ │ │ │ │ ├── tests15.dat │ │ │ │ │ ├── tests16.dat │ │ │ │ │ ├── tests17.dat │ │ │ │ │ ├── tests18.dat │ │ │ │ │ ├── tests19.dat │ │ │ │ │ ├── tests2.dat │ │ │ │ │ ├── tests20.dat │ │ │ │ │ ├── tests21.dat │ │ │ │ │ ├── tests22.dat │ │ │ │ │ ├── tests23.dat │ │ │ │ │ ├── tests24.dat │ │ │ │ │ ├── tests25.dat │ │ │ │ │ ├── tests26.dat │ │ │ │ │ ├── tests3.dat │ │ │ │ │ ├── tests4.dat │ │ │ │ │ ├── tests5.dat │ │ │ │ │ ├── tests6.dat │ │ │ │ │ ├── tests7.dat │ │ │ │ │ ├── tests8.dat │ │ │ │ │ ├── tests9.dat │ │ │ │ │ ├── tests_innerHTML_1.dat │ │ │ │ │ ├── tricky01.dat │ │ │ │ │ ├── webkit01.dat │ │ │ │ │ └── webkit02.dat │ │ │ ├── token.go │ │ │ └── token_test.go │ │ ├── http │ │ │ └── httpproxy │ │ │ │ ├── export_test.go │ │ │ │ ├── go19_test.go │ │ │ │ ├── proxy.go │ │ │ │ └── proxy_test.go │ │ ├── http2 │ │ │ ├── .gitignore │ │ │ ├── Dockerfile │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── ciphers.go │ │ │ ├── ciphers_test.go │ │ │ ├── client_conn_pool.go │ │ │ ├── configure_transport.go │ │ │ ├── databuffer.go │ │ │ ├── databuffer_test.go │ │ │ ├── errors.go │ │ │ ├── errors_test.go │ │ │ ├── flow.go │ │ │ ├── flow_test.go │ │ │ ├── frame.go │ │ │ ├── frame_test.go │ │ │ ├── go16.go │ │ │ ├── go17.go │ │ │ ├── go17_not18.go │ │ │ ├── go18.go │ │ │ ├── go18_test.go │ │ │ ├── go19.go │ │ │ ├── go19_test.go │ │ │ ├── gotrack.go │ │ │ ├── gotrack_test.go │ │ │ ├── h2demo │ │ │ │ ├── .gitignore │ │ │ │ ├── Dockerfile │ │ │ │ ├── Dockerfile.0 │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── deployment-prod.yaml │ │ │ │ ├── h2demo.go │ │ │ │ ├── launch.go │ │ │ │ ├── rootCA.key │ │ │ │ ├── rootCA.pem │ │ │ │ ├── rootCA.srl │ │ │ │ ├── server.crt │ │ │ │ ├── server.key │ │ │ │ ├── service.yaml │ │ │ │ └── tmpl.go │ │ │ ├── h2i │ │ │ │ ├── README.md │ │ │ │ └── h2i.go │ │ │ ├── headermap.go │ │ │ ├── hpack │ │ │ │ ├── encode.go │ │ │ │ ├── encode_test.go │ │ │ │ ├── hpack.go │ │ │ │ ├── hpack_test.go │ │ │ │ ├── huffman.go │ │ │ │ ├── tables.go │ │ │ │ └── tables_test.go │ │ │ ├── http2.go │ │ │ ├── http2_test.go │ │ │ ├── not_go16.go │ │ │ ├── not_go17.go │ │ │ ├── not_go18.go │ │ │ ├── not_go19.go │ │ │ ├── pipe.go │ │ │ ├── pipe_test.go │ │ │ ├── server.go │ │ │ ├── server_push_test.go │ │ │ ├── server_test.go │ │ │ ├── testdata │ │ │ │ └── draft-ietf-httpbis-http2.xml │ │ │ ├── transport.go │ │ │ ├── transport_test.go │ │ │ ├── write.go │ │ │ ├── writesched.go │ │ │ ├── writesched_priority.go │ │ │ ├── writesched_priority_test.go │ │ │ ├── writesched_random.go │ │ │ ├── writesched_random_test.go │ │ │ ├── writesched_test.go │ │ │ └── z_spec_test.go │ │ ├── icmp │ │ │ ├── diag_test.go │ │ │ ├── dstunreach.go │ │ │ ├── echo.go │ │ │ ├── endpoint.go │ │ │ ├── example_test.go │ │ │ ├── extension.go │ │ │ ├── extension_test.go │ │ │ ├── helper_posix.go │ │ │ ├── interface.go │ │ │ ├── ipv4.go │ │ │ ├── ipv4_test.go │ │ │ ├── ipv6.go │ │ │ ├── listen_posix.go │ │ │ ├── listen_stub.go │ │ │ ├── message.go │ │ │ ├── message_test.go │ │ │ ├── messagebody.go │ │ │ ├── mpls.go │ │ │ ├── multipart.go │ │ │ ├── multipart_test.go │ │ │ ├── packettoobig.go │ │ │ ├── paramprob.go │ │ │ ├── sys_freebsd.go │ │ │ └── timeexceeded.go │ │ ├── idna │ │ │ ├── example_test.go │ │ │ ├── idna.go │ │ │ ├── idna_test.go │ │ │ ├── punycode.go │ │ │ ├── punycode_test.go │ │ │ ├── tables.go │ │ │ ├── trie.go │ │ │ └── trieval.go │ │ ├── internal │ │ │ ├── iana │ │ │ │ ├── const.go │ │ │ │ └── gen.go │ │ │ ├── nettest │ │ │ │ ├── helper_bsd.go │ │ │ │ ├── helper_nobsd.go │ │ │ │ ├── helper_posix.go │ │ │ │ ├── helper_stub.go │ │ │ │ ├── helper_unix.go │ │ │ │ ├── helper_windows.go │ │ │ │ ├── interface.go │ │ │ │ ├── rlimit.go │ │ │ │ └── stack.go │ │ │ ├── socket │ │ │ │ ├── cmsghdr.go │ │ │ │ ├── cmsghdr_bsd.go │ │ │ │ ├── cmsghdr_linux_32bit.go │ │ │ │ ├── cmsghdr_linux_64bit.go │ │ │ │ ├── cmsghdr_solaris_64bit.go │ │ │ │ ├── cmsghdr_stub.go │ │ │ │ ├── defs_darwin.go │ │ │ │ ├── defs_dragonfly.go │ │ │ │ ├── defs_freebsd.go │ │ │ │ ├── defs_linux.go │ │ │ │ ├── defs_netbsd.go │ │ │ │ ├── defs_openbsd.go │ │ │ │ ├── defs_solaris.go │ │ │ │ ├── error_unix.go │ │ │ │ ├── error_windows.go │ │ │ │ ├── iovec_32bit.go │ │ │ │ ├── iovec_64bit.go │ │ │ │ ├── iovec_solaris_64bit.go │ │ │ │ ├── iovec_stub.go │ │ │ │ ├── mmsghdr_stub.go │ │ │ │ ├── mmsghdr_unix.go │ │ │ │ ├── msghdr_bsd.go │ │ │ │ ├── msghdr_bsdvar.go │ │ │ │ ├── msghdr_linux.go │ │ │ │ ├── msghdr_linux_32bit.go │ │ │ │ ├── msghdr_linux_64bit.go │ │ │ │ ├── msghdr_openbsd.go │ │ │ │ ├── msghdr_solaris_64bit.go │ │ │ │ ├── msghdr_stub.go │ │ │ │ ├── rawconn.go │ │ │ │ ├── rawconn_mmsg.go │ │ │ │ ├── rawconn_msg.go │ │ │ │ ├── rawconn_nommsg.go │ │ │ │ ├── rawconn_nomsg.go │ │ │ │ ├── rawconn_stub.go │ │ │ │ ├── reflect.go │ │ │ │ ├── socket.go │ │ │ │ ├── socket_go1_9_test.go │ │ │ │ ├── socket_test.go │ │ │ │ ├── sys.go │ │ │ │ ├── sys_bsd.go │ │ │ │ ├── sys_bsdvar.go │ │ │ │ ├── sys_darwin.go │ │ │ │ ├── sys_dragonfly.go │ │ │ │ ├── sys_linux.go │ │ │ │ ├── sys_linux_386.go │ │ │ │ ├── sys_linux_386.s │ │ │ │ ├── sys_linux_amd64.go │ │ │ │ ├── sys_linux_arm.go │ │ │ │ ├── sys_linux_arm64.go │ │ │ │ ├── sys_linux_mips.go │ │ │ │ ├── sys_linux_mips64.go │ │ │ │ ├── sys_linux_mips64le.go │ │ │ │ ├── sys_linux_mipsle.go │ │ │ │ ├── sys_linux_ppc64.go │ │ │ │ ├── sys_linux_ppc64le.go │ │ │ │ ├── sys_linux_s390x.go │ │ │ │ ├── sys_linux_s390x.s │ │ │ │ ├── sys_netbsd.go │ │ │ │ ├── sys_posix.go │ │ │ │ ├── sys_solaris.go │ │ │ │ ├── sys_solaris_amd64.s │ │ │ │ ├── sys_stub.go │ │ │ │ ├── sys_unix.go │ │ │ │ ├── sys_windows.go │ │ │ │ ├── zsys_darwin_386.go │ │ │ │ ├── zsys_darwin_amd64.go │ │ │ │ ├── zsys_darwin_arm.go │ │ │ │ ├── zsys_darwin_arm64.go │ │ │ │ ├── zsys_dragonfly_amd64.go │ │ │ │ ├── zsys_freebsd_386.go │ │ │ │ ├── zsys_freebsd_amd64.go │ │ │ │ ├── zsys_freebsd_arm.go │ │ │ │ ├── zsys_linux_386.go │ │ │ │ ├── zsys_linux_amd64.go │ │ │ │ ├── zsys_linux_arm.go │ │ │ │ ├── zsys_linux_arm64.go │ │ │ │ ├── zsys_linux_mips.go │ │ │ │ ├── zsys_linux_mips64.go │ │ │ │ ├── zsys_linux_mips64le.go │ │ │ │ ├── zsys_linux_mipsle.go │ │ │ │ ├── zsys_linux_ppc64.go │ │ │ │ ├── zsys_linux_ppc64le.go │ │ │ │ ├── zsys_linux_s390x.go │ │ │ │ ├── zsys_netbsd_386.go │ │ │ │ ├── zsys_netbsd_amd64.go │ │ │ │ ├── zsys_netbsd_arm.go │ │ │ │ ├── zsys_openbsd_386.go │ │ │ │ ├── zsys_openbsd_amd64.go │ │ │ │ ├── zsys_openbsd_arm.go │ │ │ │ └── zsys_solaris_amd64.go │ │ │ └── timeseries │ │ │ │ ├── timeseries.go │ │ │ │ └── timeseries_test.go │ │ ├── ipv4 │ │ │ ├── batch.go │ │ │ ├── bpf_test.go │ │ │ ├── control.go │ │ │ ├── control_bsd.go │ │ │ ├── control_pktinfo.go │ │ │ ├── control_stub.go │ │ │ ├── control_test.go │ │ │ ├── control_unix.go │ │ │ ├── control_windows.go │ │ │ ├── defs_darwin.go │ │ │ ├── defs_dragonfly.go │ │ │ ├── defs_freebsd.go │ │ │ ├── defs_linux.go │ │ │ ├── defs_netbsd.go │ │ │ ├── defs_openbsd.go │ │ │ ├── defs_solaris.go │ │ │ ├── dgramopt.go │ │ │ ├── doc.go │ │ │ ├── endpoint.go │ │ │ ├── example_test.go │ │ │ ├── gen.go │ │ │ ├── genericopt.go │ │ │ ├── header.go │ │ │ ├── header_test.go │ │ │ ├── helper.go │ │ │ ├── iana.go │ │ │ ├── icmp.go │ │ │ ├── icmp_linux.go │ │ │ ├── icmp_stub.go │ │ │ ├── icmp_test.go │ │ │ ├── multicast_test.go │ │ │ ├── multicastlistener_test.go │ │ │ ├── multicastsockopt_test.go │ │ │ ├── packet.go │ │ │ ├── packet_go1_8.go │ │ │ ├── packet_go1_9.go │ │ │ ├── payload.go │ │ │ ├── payload_cmsg.go │ │ │ ├── payload_cmsg_go1_8.go │ │ │ ├── payload_cmsg_go1_9.go │ │ │ ├── payload_nocmsg.go │ │ │ ├── readwrite_go1_8_test.go │ │ │ ├── readwrite_go1_9_test.go │ │ │ ├── readwrite_test.go │ │ │ ├── sockopt.go │ │ │ ├── sockopt_posix.go │ │ │ ├── sockopt_stub.go │ │ │ ├── sys_asmreq.go │ │ │ ├── sys_asmreq_stub.go │ │ │ ├── sys_asmreqn.go │ │ │ ├── sys_asmreqn_stub.go │ │ │ ├── sys_bpf.go │ │ │ ├── sys_bpf_stub.go │ │ │ ├── sys_bsd.go │ │ │ ├── sys_darwin.go │ │ │ ├── sys_dragonfly.go │ │ │ ├── sys_freebsd.go │ │ │ ├── sys_linux.go │ │ │ ├── sys_solaris.go │ │ │ ├── sys_ssmreq.go │ │ │ ├── sys_ssmreq_stub.go │ │ │ ├── sys_stub.go │ │ │ ├── sys_windows.go │ │ │ ├── unicast_test.go │ │ │ ├── unicastsockopt_test.go │ │ │ ├── zsys_darwin.go │ │ │ ├── zsys_dragonfly.go │ │ │ ├── zsys_freebsd_386.go │ │ │ ├── zsys_freebsd_amd64.go │ │ │ ├── zsys_freebsd_arm.go │ │ │ ├── zsys_linux_386.go │ │ │ ├── zsys_linux_amd64.go │ │ │ ├── zsys_linux_arm.go │ │ │ ├── zsys_linux_arm64.go │ │ │ ├── zsys_linux_mips.go │ │ │ ├── zsys_linux_mips64.go │ │ │ ├── zsys_linux_mips64le.go │ │ │ ├── zsys_linux_mipsle.go │ │ │ ├── zsys_linux_ppc.go │ │ │ ├── zsys_linux_ppc64.go │ │ │ ├── zsys_linux_ppc64le.go │ │ │ ├── zsys_linux_s390x.go │ │ │ ├── zsys_netbsd.go │ │ │ ├── zsys_openbsd.go │ │ │ └── zsys_solaris.go │ │ ├── ipv6 │ │ │ ├── batch.go │ │ │ ├── bpf_test.go │ │ │ ├── control.go │ │ │ ├── control_rfc2292_unix.go │ │ │ ├── control_rfc3542_unix.go │ │ │ ├── control_stub.go │ │ │ ├── control_test.go │ │ │ ├── control_unix.go │ │ │ ├── control_windows.go │ │ │ ├── defs_darwin.go │ │ │ ├── defs_dragonfly.go │ │ │ ├── defs_freebsd.go │ │ │ ├── defs_linux.go │ │ │ ├── defs_netbsd.go │ │ │ ├── defs_openbsd.go │ │ │ ├── defs_solaris.go │ │ │ ├── dgramopt.go │ │ │ ├── doc.go │ │ │ ├── endpoint.go │ │ │ ├── example_test.go │ │ │ ├── gen.go │ │ │ ├── genericopt.go │ │ │ ├── header.go │ │ │ ├── header_test.go │ │ │ ├── helper.go │ │ │ ├── iana.go │ │ │ ├── icmp.go │ │ │ ├── icmp_bsd.go │ │ │ ├── icmp_linux.go │ │ │ ├── icmp_solaris.go │ │ │ ├── icmp_stub.go │ │ │ ├── icmp_test.go │ │ │ ├── icmp_windows.go │ │ │ ├── mocktransponder_test.go │ │ │ ├── multicast_test.go │ │ │ ├── multicastlistener_test.go │ │ │ ├── multicastsockopt_test.go │ │ │ ├── payload.go │ │ │ ├── payload_cmsg.go │ │ │ ├── payload_cmsg_go1_8.go │ │ │ ├── payload_cmsg_go1_9.go │ │ │ ├── payload_nocmsg.go │ │ │ ├── readwrite_go1_8_test.go │ │ │ ├── readwrite_go1_9_test.go │ │ │ ├── readwrite_test.go │ │ │ ├── sockopt.go │ │ │ ├── sockopt_posix.go │ │ │ ├── sockopt_stub.go │ │ │ ├── sockopt_test.go │ │ │ ├── sys_asmreq.go │ │ │ ├── sys_asmreq_stub.go │ │ │ ├── sys_bpf.go │ │ │ ├── sys_bpf_stub.go │ │ │ ├── sys_bsd.go │ │ │ ├── sys_darwin.go │ │ │ ├── sys_freebsd.go │ │ │ ├── sys_linux.go │ │ │ ├── sys_solaris.go │ │ │ ├── sys_ssmreq.go │ │ │ ├── sys_ssmreq_stub.go │ │ │ ├── sys_stub.go │ │ │ ├── sys_windows.go │ │ │ ├── unicast_test.go │ │ │ ├── unicastsockopt_test.go │ │ │ ├── zsys_darwin.go │ │ │ ├── zsys_dragonfly.go │ │ │ ├── zsys_freebsd_386.go │ │ │ ├── zsys_freebsd_amd64.go │ │ │ ├── zsys_freebsd_arm.go │ │ │ ├── zsys_linux_386.go │ │ │ ├── zsys_linux_amd64.go │ │ │ ├── zsys_linux_arm.go │ │ │ ├── zsys_linux_arm64.go │ │ │ ├── zsys_linux_mips.go │ │ │ ├── zsys_linux_mips64.go │ │ │ ├── zsys_linux_mips64le.go │ │ │ ├── zsys_linux_mipsle.go │ │ │ ├── zsys_linux_ppc.go │ │ │ ├── zsys_linux_ppc64.go │ │ │ ├── zsys_linux_ppc64le.go │ │ │ ├── zsys_linux_s390x.go │ │ │ ├── zsys_netbsd.go │ │ │ ├── zsys_openbsd.go │ │ │ └── zsys_solaris.go │ │ ├── lex │ │ │ └── httplex │ │ │ │ ├── httplex.go │ │ │ │ └── httplex_test.go │ │ ├── lif │ │ │ ├── address.go │ │ │ ├── address_test.go │ │ │ ├── binary.go │ │ │ ├── defs_solaris.go │ │ │ ├── lif.go │ │ │ ├── link.go │ │ │ ├── link_test.go │ │ │ ├── sys.go │ │ │ ├── sys_solaris_amd64.s │ │ │ ├── syscall.go │ │ │ └── zsys_solaris_amd64.go │ │ ├── nettest │ │ │ ├── conntest.go │ │ │ ├── conntest_go16.go │ │ │ ├── conntest_go17.go │ │ │ └── conntest_test.go │ │ ├── netutil │ │ │ ├── listen.go │ │ │ └── listen_test.go │ │ ├── proxy │ │ │ ├── direct.go │ │ │ ├── per_host.go │ │ │ ├── per_host_test.go │ │ │ ├── proxy.go │ │ │ ├── proxy_test.go │ │ │ └── socks5.go │ │ ├── publicsuffix │ │ │ ├── gen.go │ │ │ ├── list.go │ │ │ ├── list_test.go │ │ │ ├── table.go │ │ │ └── table_test.go │ │ ├── route │ │ │ ├── address.go │ │ │ ├── address_darwin_test.go │ │ │ ├── address_test.go │ │ │ ├── binary.go │ │ │ ├── defs_darwin.go │ │ │ ├── defs_dragonfly.go │ │ │ ├── defs_freebsd.go │ │ │ ├── defs_netbsd.go │ │ │ ├── defs_openbsd.go │ │ │ ├── interface.go │ │ │ ├── interface_announce.go │ │ │ ├── interface_classic.go │ │ │ ├── interface_freebsd.go │ │ │ ├── interface_multicast.go │ │ │ ├── interface_openbsd.go │ │ │ ├── message.go │ │ │ ├── message_darwin_test.go │ │ │ ├── message_freebsd_test.go │ │ │ ├── message_test.go │ │ │ ├── route.go │ │ │ ├── route_classic.go │ │ │ ├── route_openbsd.go │ │ │ ├── route_test.go │ │ │ ├── sys.go │ │ │ ├── sys_darwin.go │ │ │ ├── sys_dragonfly.go │ │ │ ├── sys_freebsd.go │ │ │ ├── sys_netbsd.go │ │ │ ├── sys_openbsd.go │ │ │ ├── syscall.go │ │ │ ├── zsys_darwin.go │ │ │ ├── zsys_dragonfly.go │ │ │ ├── zsys_freebsd_386.go │ │ │ ├── zsys_freebsd_amd64.go │ │ │ ├── zsys_freebsd_arm.go │ │ │ ├── zsys_netbsd.go │ │ │ └── zsys_openbsd.go │ │ ├── trace │ │ │ ├── events.go │ │ │ ├── histogram.go │ │ │ ├── histogram_test.go │ │ │ ├── trace.go │ │ │ ├── trace_go16.go │ │ │ ├── trace_go17.go │ │ │ └── trace_test.go │ │ ├── webdav │ │ │ ├── file.go │ │ │ ├── file_go1.6.go │ │ │ ├── file_go1.7.go │ │ │ ├── file_test.go │ │ │ ├── if.go │ │ │ ├── if_test.go │ │ │ ├── internal │ │ │ │ └── xml │ │ │ │ │ ├── README │ │ │ │ │ ├── atom_test.go │ │ │ │ │ ├── example_test.go │ │ │ │ │ ├── marshal.go │ │ │ │ │ ├── marshal_test.go │ │ │ │ │ ├── read.go │ │ │ │ │ ├── read_test.go │ │ │ │ │ ├── typeinfo.go │ │ │ │ │ ├── xml.go │ │ │ │ │ └── xml_test.go │ │ │ ├── litmus_test_server.go │ │ │ ├── lock.go │ │ │ ├── lock_test.go │ │ │ ├── prop.go │ │ │ ├── prop_test.go │ │ │ ├── webdav.go │ │ │ ├── webdav_test.go │ │ │ ├── xml.go │ │ │ └── xml_test.go │ │ ├── websocket │ │ │ ├── client.go │ │ │ ├── dial.go │ │ │ ├── dial_test.go │ │ │ ├── exampledial_test.go │ │ │ ├── examplehandler_test.go │ │ │ ├── hybi.go │ │ │ ├── hybi_test.go │ │ │ ├── server.go │ │ │ ├── websocket.go │ │ │ └── websocket_test.go │ │ └── xsrftoken │ │ │ ├── xsrf.go │ │ │ └── xsrf_test.go │ │ └── text │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── README.md │ │ ├── cases │ │ ├── cases.go │ │ ├── context.go │ │ ├── context_test.go │ │ ├── example_test.go │ │ ├── fold.go │ │ ├── fold_test.go │ │ ├── gen.go │ │ ├── gen_trieval.go │ │ ├── icu.go │ │ ├── icu_test.go │ │ ├── info.go │ │ ├── map.go │ │ ├── map_test.go │ │ ├── tables10.0.0.go │ │ ├── tables10.0.0_test.go │ │ ├── tables9.0.0.go │ │ ├── tables9.0.0_test.go │ │ └── trieval.go │ │ ├── cmd │ │ └── gotext │ │ │ ├── common.go │ │ │ ├── doc.go │ │ │ ├── examples │ │ │ ├── extract │ │ │ │ ├── catalog.go │ │ │ │ ├── locales │ │ │ │ │ ├── de │ │ │ │ │ │ ├── messages.gotext.json │ │ │ │ │ │ └── out.gotext.json │ │ │ │ │ ├── en-US │ │ │ │ │ │ ├── messages.gotext.json │ │ │ │ │ │ └── out.gotext.json │ │ │ │ │ ├── extracted.gotext.json │ │ │ │ │ └── zh │ │ │ │ │ │ ├── messages.gotext.json │ │ │ │ │ │ └── out.gotext.json │ │ │ │ └── main.go │ │ │ ├── extract_http │ │ │ │ ├── locales │ │ │ │ │ ├── de │ │ │ │ │ │ └── out.gotext.json │ │ │ │ │ ├── en-US │ │ │ │ │ │ └── out.gotext.json │ │ │ │ │ ├── extracted.gotext.json │ │ │ │ │ └── zh │ │ │ │ │ │ └── out.gotext.json │ │ │ │ ├── main.go │ │ │ │ └── pkg │ │ │ │ │ └── pkg.go │ │ │ └── rewrite │ │ │ │ ├── main.go │ │ │ │ └── printer.go │ │ │ ├── extract.go │ │ │ ├── generate.go │ │ │ ├── main.go │ │ │ └── rewrite.go │ │ ├── codereview.cfg │ │ ├── collate │ │ ├── build │ │ │ ├── builder.go │ │ │ ├── builder_test.go │ │ │ ├── colelem.go │ │ │ ├── colelem_test.go │ │ │ ├── contract.go │ │ │ ├── contract_test.go │ │ │ ├── order.go │ │ │ ├── order_test.go │ │ │ ├── table.go │ │ │ ├── trie.go │ │ │ └── trie_test.go │ │ ├── collate.go │ │ ├── collate_test.go │ │ ├── export_test.go │ │ ├── index.go │ │ ├── maketables.go │ │ ├── option.go │ │ ├── option_test.go │ │ ├── reg_test.go │ │ ├── sort.go │ │ ├── sort_test.go │ │ ├── table_test.go │ │ ├── tables.go │ │ └── tools │ │ │ └── colcmp │ │ │ ├── Makefile │ │ │ ├── chars.go │ │ │ ├── col.go │ │ │ ├── colcmp.go │ │ │ ├── darwin.go │ │ │ ├── gen.go │ │ │ └── icu.go │ │ ├── currency │ │ ├── common.go │ │ ├── currency.go │ │ ├── currency_test.go │ │ ├── example_test.go │ │ ├── format.go │ │ ├── format_test.go │ │ ├── gen.go │ │ ├── gen_common.go │ │ ├── query.go │ │ ├── query_test.go │ │ ├── tables.go │ │ └── tables_test.go │ │ ├── date │ │ ├── data_test.go │ │ ├── gen.go │ │ ├── gen_test.go │ │ └── tables.go │ │ ├── doc.go │ │ ├── encoding │ │ ├── charmap │ │ │ ├── charmap.go │ │ │ ├── charmap_test.go │ │ │ ├── maketables.go │ │ │ └── tables.go │ │ ├── encoding.go │ │ ├── encoding_test.go │ │ ├── example_test.go │ │ ├── htmlindex │ │ │ ├── gen.go │ │ │ ├── htmlindex.go │ │ │ ├── htmlindex_test.go │ │ │ ├── map.go │ │ │ └── tables.go │ │ ├── ianaindex │ │ │ ├── example_test.go │ │ │ ├── gen.go │ │ │ ├── ianaindex.go │ │ │ ├── ianaindex_test.go │ │ │ └── tables.go │ │ ├── internal │ │ │ ├── enctest │ │ │ │ └── enctest.go │ │ │ ├── identifier │ │ │ │ ├── gen.go │ │ │ │ ├── identifier.go │ │ │ │ └── mib.go │ │ │ └── internal.go │ │ ├── japanese │ │ │ ├── all.go │ │ │ ├── all_test.go │ │ │ ├── eucjp.go │ │ │ ├── iso2022jp.go │ │ │ ├── maketables.go │ │ │ ├── shiftjis.go │ │ │ └── tables.go │ │ ├── korean │ │ │ ├── all_test.go │ │ │ ├── euckr.go │ │ │ ├── maketables.go │ │ │ └── tables.go │ │ ├── simplifiedchinese │ │ │ ├── all.go │ │ │ ├── all_test.go │ │ │ ├── gbk.go │ │ │ ├── hzgb2312.go │ │ │ ├── maketables.go │ │ │ └── tables.go │ │ ├── testdata │ │ │ ├── candide-gb18030.txt │ │ │ ├── candide-utf-16le.txt │ │ │ ├── candide-utf-32be.txt │ │ │ ├── candide-utf-8.txt │ │ │ ├── candide-windows-1252.txt │ │ │ ├── rashomon-euc-jp.txt │ │ │ ├── rashomon-iso-2022-jp.txt │ │ │ ├── rashomon-shift-jis.txt │ │ │ ├── rashomon-utf-8.txt │ │ │ ├── sunzi-bingfa-gb-levels-1-and-2-hz-gb2312.txt │ │ │ ├── sunzi-bingfa-gb-levels-1-and-2-utf-8.txt │ │ │ ├── sunzi-bingfa-simplified-gbk.txt │ │ │ ├── sunzi-bingfa-simplified-utf-8.txt │ │ │ ├── sunzi-bingfa-traditional-big5.txt │ │ │ ├── sunzi-bingfa-traditional-utf-8.txt │ │ │ ├── unsu-joh-eun-nal-euc-kr.txt │ │ │ └── unsu-joh-eun-nal-utf-8.txt │ │ ├── traditionalchinese │ │ │ ├── all_test.go │ │ │ ├── big5.go │ │ │ ├── maketables.go │ │ │ └── tables.go │ │ └── unicode │ │ │ ├── override.go │ │ │ ├── unicode.go │ │ │ ├── unicode_test.go │ │ │ └── utf32 │ │ │ ├── utf32.go │ │ │ └── utf32_test.go │ │ ├── feature │ │ └── plural │ │ │ ├── common.go │ │ │ ├── data_test.go │ │ │ ├── example_test.go │ │ │ ├── gen.go │ │ │ ├── gen_common.go │ │ │ ├── message.go │ │ │ ├── message_test.go │ │ │ ├── plural.go │ │ │ ├── plural_test.go │ │ │ └── tables.go │ │ ├── gen.go │ │ ├── internal │ │ ├── catmsg │ │ │ ├── catmsg.go │ │ │ ├── catmsg_test.go │ │ │ ├── codec.go │ │ │ ├── varint.go │ │ │ └── varint_test.go │ │ ├── cldrtree │ │ │ ├── cldrtree.go │ │ │ ├── cldrtree_test.go │ │ │ ├── generate.go │ │ │ ├── option.go │ │ │ ├── testdata │ │ │ │ ├── test1 │ │ │ │ │ ├── common │ │ │ │ │ │ └── main │ │ │ │ │ │ │ └── root.xml │ │ │ │ │ └── output.go │ │ │ │ └── test2 │ │ │ │ │ ├── common │ │ │ │ │ └── main │ │ │ │ │ │ ├── en.xml │ │ │ │ │ │ ├── en_001.xml │ │ │ │ │ │ ├── en_GB.xml │ │ │ │ │ │ └── root.xml │ │ │ │ │ └── output.go │ │ │ ├── tree.go │ │ │ └── type.go │ │ ├── colltab │ │ │ ├── collate_test.go │ │ │ ├── collelem.go │ │ │ ├── collelem_test.go │ │ │ ├── colltab.go │ │ │ ├── colltab_test.go │ │ │ ├── contract.go │ │ │ ├── contract_test.go │ │ │ ├── iter.go │ │ │ ├── iter_test.go │ │ │ ├── numeric.go │ │ │ ├── numeric_test.go │ │ │ ├── table.go │ │ │ ├── trie.go │ │ │ ├── trie_test.go │ │ │ ├── weighter.go │ │ │ └── weighter_test.go │ │ ├── export │ │ │ ├── README │ │ │ └── idna │ │ │ │ ├── common_test.go │ │ │ │ ├── example_test.go │ │ │ │ ├── gen.go │ │ │ │ ├── gen10.0.0_test.go │ │ │ │ ├── gen9.0.0_test.go │ │ │ │ ├── gen_common.go │ │ │ │ ├── gen_trieval.go │ │ │ │ ├── idna10.0.0.go │ │ │ │ ├── idna10.0.0_test.go │ │ │ │ ├── idna9.0.0.go │ │ │ │ ├── idna9.0.0_test.go │ │ │ │ ├── idna_test.go │ │ │ │ ├── punycode.go │ │ │ │ ├── punycode_test.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ ├── trie.go │ │ │ │ └── trieval.go │ │ ├── format │ │ │ ├── format.go │ │ │ ├── parser.go │ │ │ └── parser_test.go │ │ ├── gen.go │ │ ├── gen │ │ │ ├── code.go │ │ │ └── gen.go │ │ ├── gen_test.go │ │ ├── internal.go │ │ ├── internal_test.go │ │ ├── match.go │ │ ├── match_test.go │ │ ├── number │ │ │ ├── common.go │ │ │ ├── decimal.go │ │ │ ├── decimal_test.go │ │ │ ├── format.go │ │ │ ├── format_test.go │ │ │ ├── gen.go │ │ │ ├── gen_common.go │ │ │ ├── number.go │ │ │ ├── number_test.go │ │ │ ├── pattern.go │ │ │ ├── pattern_test.go │ │ │ ├── roundingmode_string.go │ │ │ ├── tables.go │ │ │ └── tables_test.go │ │ ├── stringset │ │ │ ├── set.go │ │ │ └── set_test.go │ │ ├── tables.go │ │ ├── tag │ │ │ ├── tag.go │ │ │ └── tag_test.go │ │ ├── testtext │ │ │ ├── codesize.go │ │ │ ├── flag.go │ │ │ ├── gc.go │ │ │ ├── gccgo.go │ │ │ ├── go1_6.go │ │ │ ├── go1_7.go │ │ │ └── text.go │ │ ├── triegen │ │ │ ├── compact.go │ │ │ ├── data_test.go │ │ │ ├── example_compact_test.go │ │ │ ├── example_test.go │ │ │ ├── gen_test.go │ │ │ ├── print.go │ │ │ └── triegen.go │ │ ├── ucd │ │ │ ├── example_test.go │ │ │ ├── ucd.go │ │ │ └── ucd_test.go │ │ └── utf8internal │ │ │ └── utf8internal.go │ │ ├── language │ │ ├── Makefile │ │ ├── common.go │ │ ├── coverage.go │ │ ├── coverage_test.go │ │ ├── display │ │ │ ├── dict.go │ │ │ ├── dict_test.go │ │ │ ├── display.go │ │ │ ├── display_test.go │ │ │ ├── examples_test.go │ │ │ ├── lookup.go │ │ │ ├── maketables.go │ │ │ └── tables.go │ │ ├── doc.go │ │ ├── examples_test.go │ │ ├── gen.go │ │ ├── gen_common.go │ │ ├── gen_index.go │ │ ├── go1_1.go │ │ ├── go1_2.go │ │ ├── httpexample_test.go │ │ ├── index.go │ │ ├── language.go │ │ ├── language_test.go │ │ ├── lookup.go │ │ ├── lookup_test.go │ │ ├── match.go │ │ ├── match_test.go │ │ ├── parse.go │ │ ├── parse_test.go │ │ ├── tables.go │ │ ├── tags.go │ │ └── testdata │ │ │ ├── CLDRLocaleMatcherTest.txt │ │ │ └── GoLocaleMatcherTest.txt │ │ ├── message │ │ ├── catalog.go │ │ ├── catalog │ │ │ ├── catalog.go │ │ │ ├── catalog_test.go │ │ │ ├── dict.go │ │ │ ├── go19.go │ │ │ └── gopre19.go │ │ ├── catalog_test.go │ │ ├── doc.go │ │ ├── examples_test.go │ │ ├── fmt_test.go │ │ ├── format.go │ │ ├── message.go │ │ ├── message_test.go │ │ ├── pipeline │ │ │ ├── extract.go │ │ │ ├── generate.go │ │ │ ├── message.go │ │ │ ├── pipeline.go │ │ │ └── rewrite.go │ │ └── print.go │ │ ├── number │ │ ├── doc.go │ │ ├── examples_test.go │ │ ├── format.go │ │ ├── format_test.go │ │ ├── number.go │ │ ├── number_test.go │ │ └── option.go │ │ ├── runes │ │ ├── cond.go │ │ ├── cond_test.go │ │ ├── example_test.go │ │ ├── runes.go │ │ └── runes_test.go │ │ ├── search │ │ ├── index.go │ │ ├── pattern.go │ │ ├── pattern_test.go │ │ ├── search.go │ │ └── tables.go │ │ ├── secure │ │ ├── bidirule │ │ │ ├── bench_test.go │ │ │ ├── bidirule.go │ │ │ ├── bidirule10.0.0.go │ │ │ ├── bidirule10.0.0_test.go │ │ │ ├── bidirule9.0.0.go │ │ │ ├── bidirule9.0.0_test.go │ │ │ └── bidirule_test.go │ │ ├── doc.go │ │ └── precis │ │ │ ├── benchmark_test.go │ │ │ ├── class.go │ │ │ ├── class_test.go │ │ │ ├── context.go │ │ │ ├── doc.go │ │ │ ├── enforce10.0.0_test.go │ │ │ ├── enforce9.0.0_test.go │ │ │ ├── enforce_test.go │ │ │ ├── gen.go │ │ │ ├── gen_trieval.go │ │ │ ├── nickname.go │ │ │ ├── options.go │ │ │ ├── profile.go │ │ │ ├── profile_test.go │ │ │ ├── profiles.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── tables_test.go │ │ │ ├── transformer.go │ │ │ └── trieval.go │ │ ├── transform │ │ ├── examples_test.go │ │ ├── transform.go │ │ └── transform_test.go │ │ ├── unicode │ │ ├── bidi │ │ │ ├── bidi.go │ │ │ ├── bracket.go │ │ │ ├── core.go │ │ │ ├── core_test.go │ │ │ ├── gen.go │ │ │ ├── gen_ranges.go │ │ │ ├── gen_trieval.go │ │ │ ├── prop.go │ │ │ ├── ranges_test.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── tables_test.go │ │ │ └── trieval.go │ │ ├── cldr │ │ │ ├── base.go │ │ │ ├── cldr.go │ │ │ ├── cldr_test.go │ │ │ ├── collate.go │ │ │ ├── collate_test.go │ │ │ ├── data_test.go │ │ │ ├── decode.go │ │ │ ├── examples_test.go │ │ │ ├── makexml.go │ │ │ ├── resolve.go │ │ │ ├── resolve_test.go │ │ │ ├── slice.go │ │ │ ├── slice_test.go │ │ │ └── xml.go │ │ ├── doc.go │ │ ├── norm │ │ │ ├── composition.go │ │ │ ├── composition_test.go │ │ │ ├── data10.0.0_test.go │ │ │ ├── data9.0.0_test.go │ │ │ ├── example_iter_test.go │ │ │ ├── example_test.go │ │ │ ├── forminfo.go │ │ │ ├── forminfo_test.go │ │ │ ├── input.go │ │ │ ├── iter.go │ │ │ ├── iter_test.go │ │ │ ├── maketables.go │ │ │ ├── normalize.go │ │ │ ├── normalize_test.go │ │ │ ├── readwriter.go │ │ │ ├── readwriter_test.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── transform.go │ │ │ ├── transform_test.go │ │ │ ├── trie.go │ │ │ ├── triegen.go │ │ │ └── ucd_test.go │ │ ├── rangetable │ │ │ ├── gen.go │ │ │ ├── merge.go │ │ │ ├── merge_test.go │ │ │ ├── rangetable.go │ │ │ ├── rangetable_test.go │ │ │ ├── tables10.0.0.go │ │ │ └── tables9.0.0.go │ │ └── runenames │ │ │ ├── bits.go │ │ │ ├── example_test.go │ │ │ ├── gen.go │ │ │ ├── gen_bits.go │ │ │ ├── runenames.go │ │ │ ├── runenames_test.go │ │ │ └── tables.go │ │ └── width │ │ ├── common_test.go │ │ ├── example_test.go │ │ ├── gen.go │ │ ├── gen_common.go │ │ ├── gen_trieval.go │ │ ├── kind_string.go │ │ ├── runes_test.go │ │ ├── tables10.0.0.go │ │ ├── tables9.0.0.go │ │ ├── tables_test.go │ │ ├── transform.go │ │ ├── transform_test.go │ │ ├── trieval.go │ │ └── width.go │ └── google.golang.org │ ├── genproto │ ├── .github │ │ └── CODEOWNERS │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── googleapis │ │ ├── api │ │ │ ├── annotations │ │ │ │ ├── annotations.pb.go │ │ │ │ └── http.pb.go │ │ │ ├── authorization_config.pb.go │ │ │ ├── configchange │ │ │ │ └── config_change.pb.go │ │ │ ├── distribution │ │ │ │ └── distribution.pb.go │ │ │ ├── experimental.pb.go │ │ │ ├── httpbody │ │ │ │ └── httpbody.pb.go │ │ │ ├── label │ │ │ │ └── label.pb.go │ │ │ ├── metric │ │ │ │ └── metric.pb.go │ │ │ ├── monitoredres │ │ │ │ └── monitored_resource.pb.go │ │ │ ├── serviceconfig │ │ │ │ ├── auth.pb.go │ │ │ │ ├── backend.pb.go │ │ │ │ ├── billing.pb.go │ │ │ │ ├── consumer.pb.go │ │ │ │ ├── context.pb.go │ │ │ │ ├── control.pb.go │ │ │ │ ├── documentation.pb.go │ │ │ │ ├── endpoint.pb.go │ │ │ │ ├── log.pb.go │ │ │ │ ├── logging.pb.go │ │ │ │ ├── monitoring.pb.go │ │ │ │ ├── quota.pb.go │ │ │ │ ├── service.pb.go │ │ │ │ ├── source_info.pb.go │ │ │ │ ├── system_parameter.pb.go │ │ │ │ └── usage.pb.go │ │ │ ├── servicecontrol │ │ │ │ └── v1 │ │ │ │ │ ├── check_error.pb.go │ │ │ │ │ ├── distribution.pb.go │ │ │ │ │ ├── log_entry.pb.go │ │ │ │ │ ├── metric_value.pb.go │ │ │ │ │ ├── operation.pb.go │ │ │ │ │ ├── quota_controller.pb.go │ │ │ │ │ └── service_controller.pb.go │ │ │ └── servicemanagement │ │ │ │ └── v1 │ │ │ │ ├── resources.pb.go │ │ │ │ └── servicemanager.pb.go │ │ ├── appengine │ │ │ ├── legacy │ │ │ │ └── audit_data.pb.go │ │ │ ├── logging │ │ │ │ └── v1 │ │ │ │ │ └── request_log.pb.go │ │ │ └── v1 │ │ │ │ ├── app_yaml.pb.go │ │ │ │ ├── appengine.pb.go │ │ │ │ ├── application.pb.go │ │ │ │ ├── audit_data.pb.go │ │ │ │ ├── deploy.pb.go │ │ │ │ ├── instance.pb.go │ │ │ │ ├── location.pb.go │ │ │ │ ├── operation.pb.go │ │ │ │ ├── service.pb.go │ │ │ │ └── version.pb.go │ │ ├── assistant │ │ │ └── embedded │ │ │ │ ├── v1alpha1 │ │ │ │ └── embedded_assistant.pb.go │ │ │ │ └── v1alpha2 │ │ │ │ └── embedded_assistant.pb.go │ │ ├── bigtable │ │ │ ├── admin │ │ │ │ ├── cluster │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── bigtable_cluster_data.pb.go │ │ │ │ │ │ ├── bigtable_cluster_service.pb.go │ │ │ │ │ │ └── bigtable_cluster_service_messages.pb.go │ │ │ │ ├── table │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── bigtable_table_data.pb.go │ │ │ │ │ │ ├── bigtable_table_service.pb.go │ │ │ │ │ │ └── bigtable_table_service_messages.pb.go │ │ │ │ └── v2 │ │ │ │ │ ├── bigtable_instance_admin.pb.go │ │ │ │ │ ├── bigtable_table_admin.pb.go │ │ │ │ │ ├── common.pb.go │ │ │ │ │ ├── instance.pb.go │ │ │ │ │ └── table.pb.go │ │ │ ├── v1 │ │ │ │ ├── bigtable_data.pb.go │ │ │ │ ├── bigtable_service.pb.go │ │ │ │ └── bigtable_service_messages.pb.go │ │ │ └── v2 │ │ │ │ ├── bigtable.pb.go │ │ │ │ └── data.pb.go │ │ ├── bytestream │ │ │ └── bytestream.pb.go │ │ ├── cloud │ │ │ ├── audit │ │ │ │ └── audit_log.pb.go │ │ │ ├── bigquery │ │ │ │ ├── datatransfer │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── datatransfer.pb.go │ │ │ │ │ │ └── transfer.pb.go │ │ │ │ └── logging │ │ │ │ │ └── v1 │ │ │ │ │ └── audit_data.pb.go │ │ │ ├── billing │ │ │ │ └── v1 │ │ │ │ │ └── cloud_billing.pb.go │ │ │ ├── dataproc │ │ │ │ ├── v1 │ │ │ │ │ ├── clusters.pb.go │ │ │ │ │ ├── jobs.pb.go │ │ │ │ │ └── operations.pb.go │ │ │ │ └── v1beta2 │ │ │ │ │ ├── clusters.pb.go │ │ │ │ │ ├── jobs.pb.go │ │ │ │ │ ├── operations.pb.go │ │ │ │ │ └── workflow_templates.pb.go │ │ │ ├── dialogflow │ │ │ │ └── v2beta1 │ │ │ │ │ ├── agent.pb.go │ │ │ │ │ ├── context.pb.go │ │ │ │ │ ├── entity_type.pb.go │ │ │ │ │ ├── intent.pb.go │ │ │ │ │ ├── session.pb.go │ │ │ │ │ ├── session_entity_type.pb.go │ │ │ │ │ └── webhook.pb.go │ │ │ ├── functions │ │ │ │ └── v1beta2 │ │ │ │ │ ├── functions.pb.go │ │ │ │ │ └── operations.pb.go │ │ │ ├── iot │ │ │ │ └── v1 │ │ │ │ │ ├── device_manager.pb.go │ │ │ │ │ └── resources.pb.go │ │ │ ├── language │ │ │ │ ├── v1 │ │ │ │ │ └── language_service.pb.go │ │ │ │ ├── v1beta1 │ │ │ │ │ └── language_service.pb.go │ │ │ │ └── v1beta2 │ │ │ │ │ └── language_service.pb.go │ │ │ ├── location │ │ │ │ └── locations.pb.go │ │ │ ├── ml │ │ │ │ └── v1 │ │ │ │ │ ├── job_service.pb.go │ │ │ │ │ ├── model_service.pb.go │ │ │ │ │ ├── operation_metadata.pb.go │ │ │ │ │ ├── prediction_service.pb.go │ │ │ │ │ └── project_service.pb.go │ │ │ ├── oslogin │ │ │ │ ├── common │ │ │ │ │ └── common.pb.go │ │ │ │ ├── v1 │ │ │ │ │ └── oslogin.pb.go │ │ │ │ ├── v1alpha │ │ │ │ │ └── oslogin.pb.go │ │ │ │ └── v1beta │ │ │ │ │ └── oslogin.pb.go │ │ │ ├── resourcemanager │ │ │ │ └── v2 │ │ │ │ │ └── folders.pb.go │ │ │ ├── runtimeconfig │ │ │ │ └── v1beta1 │ │ │ │ │ ├── resources.pb.go │ │ │ │ │ └── runtimeconfig.pb.go │ │ │ ├── speech │ │ │ │ ├── v1 │ │ │ │ │ └── cloud_speech.pb.go │ │ │ │ ├── v1beta1 │ │ │ │ │ └── cloud_speech.pb.go │ │ │ │ └── v1p1beta1 │ │ │ │ │ └── cloud_speech.pb.go │ │ │ ├── support │ │ │ │ ├── common │ │ │ │ │ └── common.pb.go │ │ │ │ └── v1alpha1 │ │ │ │ │ └── cloud_support.pb.go │ │ │ ├── texttospeech │ │ │ │ └── v1beta1 │ │ │ │ │ └── cloud_tts.pb.go │ │ │ ├── videointelligence │ │ │ │ ├── v1 │ │ │ │ │ └── video_intelligence.pb.go │ │ │ │ ├── v1beta1 │ │ │ │ │ └── video_intelligence.pb.go │ │ │ │ ├── v1beta2 │ │ │ │ │ └── video_intelligence.pb.go │ │ │ │ └── v1p1beta1 │ │ │ │ │ └── video_intelligence.pb.go │ │ │ └── vision │ │ │ │ ├── v1 │ │ │ │ ├── geometry.pb.go │ │ │ │ ├── image_annotator.pb.go │ │ │ │ ├── text_annotation.pb.go │ │ │ │ └── web_detection.pb.go │ │ │ │ ├── v1p1beta1 │ │ │ │ ├── geometry.pb.go │ │ │ │ ├── image_annotator.pb.go │ │ │ │ ├── text_annotation.pb.go │ │ │ │ └── web_detection.pb.go │ │ │ │ └── v1p2beta1 │ │ │ │ ├── geometry.pb.go │ │ │ │ ├── image_annotator.pb.go │ │ │ │ ├── text_annotation.pb.go │ │ │ │ └── web_detection.pb.go │ │ ├── container │ │ │ ├── v1 │ │ │ │ └── cluster_service.pb.go │ │ │ ├── v1alpha1 │ │ │ │ └── cluster_service.pb.go │ │ │ └── v1beta1 │ │ │ │ └── cluster_service.pb.go │ │ ├── datastore │ │ │ ├── admin │ │ │ │ └── v1beta1 │ │ │ │ │ └── datastore_admin.pb.go │ │ │ ├── v1 │ │ │ │ ├── datastore.pb.go │ │ │ │ ├── entity.pb.go │ │ │ │ └── query.pb.go │ │ │ └── v1beta3 │ │ │ │ ├── datastore.pb.go │ │ │ │ ├── entity.pb.go │ │ │ │ └── query.pb.go │ │ ├── devtools │ │ │ ├── build │ │ │ │ └── v1 │ │ │ │ │ ├── build_events.pb.go │ │ │ │ │ ├── build_status.pb.go │ │ │ │ │ └── publish_build_event.pb.go │ │ │ ├── cloudbuild │ │ │ │ └── v1 │ │ │ │ │ └── cloudbuild.pb.go │ │ │ ├── clouddebugger │ │ │ │ └── v2 │ │ │ │ │ ├── controller.pb.go │ │ │ │ │ ├── data.pb.go │ │ │ │ │ └── debugger.pb.go │ │ │ ├── clouderrorreporting │ │ │ │ └── v1beta1 │ │ │ │ │ ├── common.pb.go │ │ │ │ │ ├── error_group_service.pb.go │ │ │ │ │ ├── error_stats_service.pb.go │ │ │ │ │ └── report_errors_service.pb.go │ │ │ ├── cloudprofiler │ │ │ │ └── v2 │ │ │ │ │ └── profiler.pb.go │ │ │ ├── cloudtrace │ │ │ │ ├── v1 │ │ │ │ │ └── trace.pb.go │ │ │ │ └── v2 │ │ │ │ │ ├── trace.pb.go │ │ │ │ │ └── tracing.pb.go │ │ │ ├── containeranalysis │ │ │ │ └── v1alpha1 │ │ │ │ │ ├── bill_of_materials.pb.go │ │ │ │ │ ├── containeranalysis.pb.go │ │ │ │ │ ├── image_basis.pb.go │ │ │ │ │ ├── package_vulnerability.pb.go │ │ │ │ │ ├── provenance.pb.go │ │ │ │ │ └── source_context.pb.go │ │ │ ├── remoteexecution │ │ │ │ └── v1test │ │ │ │ │ └── remote_execution.pb.go │ │ │ ├── remoteworkers │ │ │ │ └── v1test2 │ │ │ │ │ ├── bots.pb.go │ │ │ │ │ ├── command.pb.go │ │ │ │ │ └── tasks.pb.go │ │ │ ├── source │ │ │ │ └── v1 │ │ │ │ │ └── source_context.pb.go │ │ │ └── sourcerepo │ │ │ │ └── v1 │ │ │ │ └── sourcerepo.pb.go │ │ ├── example │ │ │ └── library │ │ │ │ └── v1 │ │ │ │ └── library.pb.go │ │ ├── firestore │ │ │ ├── admin │ │ │ │ └── v1beta1 │ │ │ │ │ ├── firestore_admin.pb.go │ │ │ │ │ └── index.pb.go │ │ │ └── v1beta1 │ │ │ │ ├── common.pb.go │ │ │ │ ├── document.pb.go │ │ │ │ ├── firestore.pb.go │ │ │ │ ├── query.pb.go │ │ │ │ └── write.pb.go │ │ ├── genomics │ │ │ ├── v1 │ │ │ │ ├── annotations.pb.go │ │ │ │ ├── cigar.pb.go │ │ │ │ ├── datasets.pb.go │ │ │ │ ├── operations.pb.go │ │ │ │ ├── position.pb.go │ │ │ │ ├── range.pb.go │ │ │ │ ├── readalignment.pb.go │ │ │ │ ├── readgroup.pb.go │ │ │ │ ├── readgroupset.pb.go │ │ │ │ ├── reads.pb.go │ │ │ │ ├── references.pb.go │ │ │ │ └── variants.pb.go │ │ │ └── v1alpha2 │ │ │ │ └── pipelines.pb.go │ │ ├── iam │ │ │ ├── admin │ │ │ │ └── v1 │ │ │ │ │ └── iam.pb.go │ │ │ └── v1 │ │ │ │ ├── iam_policy.pb.go │ │ │ │ ├── logging │ │ │ │ └── audit_data.pb.go │ │ │ │ └── policy.pb.go │ │ ├── logging │ │ │ ├── type │ │ │ │ ├── http_request.pb.go │ │ │ │ └── log_severity.pb.go │ │ │ └── v2 │ │ │ │ ├── log_entry.pb.go │ │ │ │ ├── logging.pb.go │ │ │ │ ├── logging_config.pb.go │ │ │ │ └── logging_metrics.pb.go │ │ ├── longrunning │ │ │ └── operations.pb.go │ │ ├── monitoring │ │ │ └── v3 │ │ │ │ ├── alert.pb.go │ │ │ │ ├── alert_service.pb.go │ │ │ │ ├── common.pb.go │ │ │ │ ├── group.pb.go │ │ │ │ ├── group_service.pb.go │ │ │ │ ├── metric.pb.go │ │ │ │ ├── metric_service.pb.go │ │ │ │ ├── mutation_record.pb.go │ │ │ │ ├── notification.pb.go │ │ │ │ ├── notification_service.pb.go │ │ │ │ ├── uptime.pb.go │ │ │ │ └── uptime_service.pb.go │ │ ├── privacy │ │ │ └── dlp │ │ │ │ ├── v2 │ │ │ │ ├── dlp.pb.go │ │ │ │ └── storage.pb.go │ │ │ │ ├── v2beta1 │ │ │ │ ├── dlp.pb.go │ │ │ │ └── storage.pb.go │ │ │ │ └── v2beta2 │ │ │ │ ├── dlp.pb.go │ │ │ │ └── storage.pb.go │ │ ├── pubsub │ │ │ ├── v1 │ │ │ │ └── pubsub.pb.go │ │ │ └── v1beta2 │ │ │ │ └── pubsub.pb.go │ │ ├── rpc │ │ │ ├── code │ │ │ │ └── code.pb.go │ │ │ ├── errdetails │ │ │ │ └── error_details.pb.go │ │ │ └── status │ │ │ │ └── status.pb.go │ │ ├── spanner │ │ │ ├── admin │ │ │ │ ├── database │ │ │ │ │ └── v1 │ │ │ │ │ │ └── spanner_database_admin.pb.go │ │ │ │ └── instance │ │ │ │ │ └── v1 │ │ │ │ │ └── spanner_instance_admin.pb.go │ │ │ └── v1 │ │ │ │ ├── keys.pb.go │ │ │ │ ├── mutation.pb.go │ │ │ │ ├── query_plan.pb.go │ │ │ │ ├── result_set.pb.go │ │ │ │ ├── spanner.pb.go │ │ │ │ ├── transaction.pb.go │ │ │ │ └── type.pb.go │ │ ├── storagetransfer │ │ │ └── v1 │ │ │ │ ├── transfer.pb.go │ │ │ │ └── transfer_types.pb.go │ │ ├── streetview │ │ │ └── publish │ │ │ │ └── v1 │ │ │ │ ├── resources.pb.go │ │ │ │ ├── rpcmessages.pb.go │ │ │ │ └── streetview_publish.pb.go │ │ ├── type │ │ │ ├── color │ │ │ │ └── color.pb.go │ │ │ ├── date │ │ │ │ └── date.pb.go │ │ │ ├── dayofweek │ │ │ │ └── dayofweek.pb.go │ │ │ ├── latlng │ │ │ │ └── latlng.pb.go │ │ │ ├── money │ │ │ │ └── money.pb.go │ │ │ ├── postaladdress │ │ │ │ └── postal_address.pb.go │ │ │ └── timeofday │ │ │ │ └── timeofday.pb.go │ │ └── watcher │ │ │ └── v1 │ │ │ └── watch.pb.go │ ├── protobuf │ │ ├── api │ │ │ └── api.pb.go │ │ ├── field_mask │ │ │ └── field_mask.pb.go │ │ ├── ptype │ │ │ └── type.pb.go │ │ └── source_context │ │ │ └── source_context.pb.go │ ├── regen.go │ └── regen.sh │ └── grpc │ ├── .github │ └── ISSUE_TEMPLATE │ ├── .travis.yml │ ├── AUTHORS │ ├── CONTRIBUTING.md │ ├── Documentation │ ├── compression.md │ ├── encoding.md │ ├── gomock-example.md │ ├── grpc-auth-support.md │ ├── grpc-metadata.md │ ├── server-reflection-tutorial.md │ └── versioning.md │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── backoff.go │ ├── backoff_test.go │ ├── balancer.go │ ├── balancer │ ├── balancer.go │ ├── base │ │ ├── balancer.go │ │ └── base.go │ └── roundrobin │ │ ├── roundrobin.go │ │ └── roundrobin_test.go │ ├── balancer_conn_wrappers.go │ ├── balancer_switching_test.go │ ├── balancer_test.go │ ├── balancer_v1_wrapper.go │ ├── benchmark │ ├── benchmain │ │ └── main.go │ ├── benchmark.go │ ├── benchmark16_test.go │ ├── benchmark17_test.go │ ├── benchresult │ │ └── main.go │ ├── client │ │ └── main.go │ ├── grpc_testing │ │ ├── control.pb.go │ │ ├── control.proto │ │ ├── messages.pb.go │ │ ├── messages.proto │ │ ├── payloads.pb.go │ │ ├── payloads.proto │ │ ├── services.pb.go │ │ ├── services.proto │ │ ├── stats.pb.go │ │ └── stats.proto │ ├── latency │ │ ├── latency.go │ │ └── latency_test.go │ ├── primitives │ │ ├── code_string_test.go │ │ ├── context_test.go │ │ └── primitives_test.go │ ├── server │ │ └── main.go │ ├── stats │ │ ├── histogram.go │ │ ├── stats.go │ │ └── util.go │ └── worker │ │ ├── benchmark_client.go │ │ ├── benchmark_server.go │ │ ├── main.go │ │ └── util.go │ ├── call.go │ ├── call_test.go │ ├── clientconn.go │ ├── clientconn_test.go │ ├── codec.go │ ├── codec_test.go │ ├── codegen.sh │ ├── codes │ ├── code_string.go │ ├── codes.go │ └── codes_test.go │ ├── connectivity │ └── connectivity.go │ ├── credentials │ ├── credentials.go │ ├── credentials_test.go │ ├── credentials_util_go17.go │ ├── credentials_util_go18.go │ ├── credentials_util_pre_go17.go │ └── oauth │ │ └── oauth.go │ ├── doc.go │ ├── encoding │ ├── encoding.go │ ├── gzip │ │ └── gzip.go │ └── proto │ │ ├── proto.go │ │ ├── proto_benchmark_test.go │ │ └── proto_test.go │ ├── examples │ ├── README.md │ ├── gotutorial.md │ ├── helloworld │ │ ├── greeter_client │ │ │ └── main.go │ │ ├── greeter_server │ │ │ └── main.go │ │ ├── helloworld │ │ │ ├── helloworld.pb.go │ │ │ └── helloworld.proto │ │ └── mock_helloworld │ │ │ ├── hw_mock.go │ │ │ └── hw_mock_test.go │ └── route_guide │ │ ├── README.md │ │ ├── client │ │ └── client.go │ │ ├── mock_routeguide │ │ ├── rg_mock.go │ │ └── rg_mock_test.go │ │ ├── routeguide │ │ ├── route_guide.pb.go │ │ └── route_guide.proto │ │ ├── server │ │ └── server.go │ │ └── testdata │ │ └── route_guide_db.json │ ├── go16.go │ ├── go17.go │ ├── grpclb.go │ ├── grpclb │ ├── grpc_lb_v1 │ │ ├── messages │ │ │ ├── messages.pb.go │ │ │ └── messages.proto │ │ └── service │ │ │ ├── service.pb.go │ │ │ └── service.proto │ └── grpclb_test.go │ ├── grpclb_picker.go │ ├── grpclb_remote_balancer.go │ ├── grpclb_util.go │ ├── grpclog │ ├── glogger │ │ └── glogger.go │ ├── grpclog.go │ ├── logger.go │ ├── loggerv2.go │ └── loggerv2_test.go │ ├── health │ ├── grpc_health_v1 │ │ ├── health.pb.go │ │ └── health.proto │ └── health.go │ ├── interceptor.go │ ├── internal │ └── internal.go │ ├── interop │ ├── client │ │ └── client.go │ ├── grpc_testing │ │ ├── test.pb.go │ │ └── test.proto │ ├── http2 │ │ └── negative_http2_client.go │ ├── server │ │ └── server.go │ └── test_utils.go │ ├── keepalive │ └── keepalive.go │ ├── metadata │ ├── metadata.go │ └── metadata_test.go │ ├── naming │ ├── dns_resolver.go │ ├── dns_resolver_test.go │ ├── go17.go │ ├── go17_test.go │ ├── go18.go │ ├── go18_test.go │ └── naming.go │ ├── peer │ └── peer.go │ ├── picker_wrapper.go │ ├── picker_wrapper_test.go │ ├── pickfirst.go │ ├── pickfirst_test.go │ ├── proxy.go │ ├── proxy_test.go │ ├── reflection │ ├── README.md │ ├── grpc_reflection_v1alpha │ │ ├── reflection.pb.go │ │ └── reflection.proto │ ├── grpc_testing │ │ ├── proto2.pb.go │ │ ├── proto2.proto │ │ ├── proto2_ext.pb.go │ │ ├── proto2_ext.proto │ │ ├── proto2_ext2.pb.go │ │ ├── proto2_ext2.proto │ │ ├── test.pb.go │ │ └── test.proto │ ├── grpc_testingv3 │ │ ├── testv3.pb.go │ │ └── testv3.proto │ ├── serverreflection.go │ └── serverreflection_test.go │ ├── resolver │ ├── dns │ │ ├── dns_resolver.go │ │ ├── dns_resolver_test.go │ │ ├── go17.go │ │ ├── go17_test.go │ │ ├── go18.go │ │ └── go18_test.go │ ├── manual │ │ └── manual.go │ ├── passthrough │ │ └── passthrough.go │ └── resolver.go │ ├── resolver_conn_wrapper.go │ ├── resolver_conn_wrapper_test.go │ ├── rpc_util.go │ ├── rpc_util_test.go │ ├── server.go │ ├── server_test.go │ ├── service_config.go │ ├── service_config_test.go │ ├── stats │ ├── grpc_testing │ │ ├── test.pb.go │ │ └── test.proto │ ├── handlers.go │ ├── stats.go │ └── stats_test.go │ ├── status │ ├── status.go │ └── status_test.go │ ├── stream.go │ ├── stress │ ├── client │ │ └── main.go │ ├── grpc_testing │ │ ├── metrics.pb.go │ │ └── metrics.proto │ └── metrics_client │ │ └── main.go │ ├── tap │ └── tap.go │ ├── test │ ├── bufconn │ │ ├── bufconn.go │ │ └── bufconn_test.go │ ├── codec_perf │ │ ├── perf.pb.go │ │ └── perf.proto │ ├── end2end_test.go │ ├── gracefulstop_test.go │ ├── grpc_testing │ │ ├── test.pb.go │ │ └── test.proto │ ├── leakcheck │ │ ├── leakcheck.go │ │ └── leakcheck_test.go │ ├── race.go │ └── servertester.go │ ├── testdata │ ├── ca.pem │ ├── server1.key │ ├── server1.pem │ └── testdata.go │ ├── trace.go │ ├── transport │ ├── bdp_estimator.go │ ├── control.go │ ├── go16.go │ ├── go17.go │ ├── handler_server.go │ ├── handler_server_test.go │ ├── http2_client.go │ ├── http2_server.go │ ├── http_util.go │ ├── http_util_test.go │ ├── log.go │ ├── transport.go │ └── transport_test.go │ └── vet.sh └── proto └── product.proto /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # go-kit and gRPC 2 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /graphql-gateway/.gitignore: -------------------------------------------------------------------------------- 1 | tmp 2 | -------------------------------------------------------------------------------- /graphql-gateway/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/Dockerfile -------------------------------------------------------------------------------- /graphql-gateway/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/Gopkg.lock -------------------------------------------------------------------------------- /graphql-gateway/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/Gopkg.toml -------------------------------------------------------------------------------- /graphql-gateway/client/grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/client/grpc.go -------------------------------------------------------------------------------- /graphql-gateway/client/product.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/client/product.go -------------------------------------------------------------------------------- /graphql-gateway/graph/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/graph/generated.go -------------------------------------------------------------------------------- /graphql-gateway/graph/graph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/graph/graph.go -------------------------------------------------------------------------------- /graphql-gateway/graph/models_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/graph/models_gen.go -------------------------------------------------------------------------------- /graphql-gateway/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/main.go -------------------------------------------------------------------------------- /graphql-gateway/pb/product.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/pb/product.pb.go -------------------------------------------------------------------------------- /graphql-gateway/runner.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/runner.conf -------------------------------------------------------------------------------- /graphql-gateway/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/schema.graphql -------------------------------------------------------------------------------- /graphql-gateway/vendor/github.com/golang/protobuf/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/github.com/golang/protobuf/.gitignore -------------------------------------------------------------------------------- /graphql-gateway/vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/github.com/golang/protobuf/AUTHORS -------------------------------------------------------------------------------- /graphql-gateway/vendor/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /graphql-gateway/vendor/github.com/golang/protobuf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/github.com/golang/protobuf/Makefile -------------------------------------------------------------------------------- /graphql-gateway/vendor/github.com/golang/protobuf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/github.com/golang/protobuf/README.md -------------------------------------------------------------------------------- /graphql-gateway/vendor/github.com/gorilla/websocket/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/github.com/gorilla/websocket/AUTHORS -------------------------------------------------------------------------------- /graphql-gateway/vendor/github.com/gorilla/websocket/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/github.com/gorilla/websocket/LICENSE -------------------------------------------------------------------------------- /graphql-gateway/vendor/github.com/gorilla/websocket/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/github.com/gorilla/websocket/conn.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/github.com/gorilla/websocket/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/github.com/gorilla/websocket/doc.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/github.com/gorilla/websocket/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/github.com/gorilla/websocket/json.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/github.com/gorilla/websocket/mask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/github.com/gorilla/websocket/mask.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/github.com/gorilla/websocket/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/github.com/gorilla/websocket/util.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/github.com/vektah/gqlgen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/github.com/vektah/gqlgen/.gitignore -------------------------------------------------------------------------------- /graphql-gateway/vendor/github.com/vektah/gqlgen/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/github.com/vektah/gqlgen/Gopkg.lock -------------------------------------------------------------------------------- /graphql-gateway/vendor/github.com/vektah/gqlgen/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/github.com/vektah/gqlgen/Gopkg.toml -------------------------------------------------------------------------------- /graphql-gateway/vendor/github.com/vektah/gqlgen/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/github.com/vektah/gqlgen/LICENSE -------------------------------------------------------------------------------- /graphql-gateway/vendor/github.com/vektah/gqlgen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/github.com/vektah/gqlgen/README.md -------------------------------------------------------------------------------- /graphql-gateway/vendor/github.com/vektah/gqlgen/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/github.com/vektah/gqlgen/main.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/github.com/vektah/gqlgen/neelance/tests/empty.go: -------------------------------------------------------------------------------- 1 | package tests 2 | -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/.gitattributes -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/.gitignore -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/CONTRIBUTING.md -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/README.md -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/bpf/asm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/bpf/asm.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/bpf/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/bpf/constants.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/bpf/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/bpf/doc.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/bpf/instructions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/bpf/instructions.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/bpf/setter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/bpf/setter.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/bpf/vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/bpf/vm.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/bpf/vm_aluop_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/bpf/vm_aluop_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/bpf/vm_bpf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/bpf/vm_bpf_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/bpf/vm_jump_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/bpf/vm_jump_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/bpf/vm_load_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/bpf/vm_load_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/bpf/vm_ret_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/bpf/vm_ret_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/bpf/vm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/bpf/vm_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/context/context.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/context/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/context/go17.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/context/go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/context/go19.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/context/pre_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/context/pre_go17.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/context/pre_go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/context/pre_go19.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/dict/dict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/dict/dict.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/html/atom/atom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/html/atom/atom.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/html/atom/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/html/atom/gen.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/html/atom/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/html/atom/table.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/html/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/html/const.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/html/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/html/doc.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/html/doctype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/html/doctype.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/html/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/html/entity.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/html/entity_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/html/entity_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/html/escape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/html/escape.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/html/escape_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/html/escape_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/html/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/html/example_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/html/foreign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/html/foreign.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/html/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/html/node.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/html/node_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/html/node_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/html/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/html/parse.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/html/parse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/html/parse_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/html/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/html/render.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/html/render_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/html/render_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/html/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/html/token.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/html/token_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/html/token_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/http2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/http2/Dockerfile -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/http2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/http2/README -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/http2/ciphers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/http2/ciphers.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/http2/databuffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/http2/databuffer.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/http2/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/http2/errors_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/http2/flow_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/http2/flow_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/http2/frame_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/http2/frame_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/http2/go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/http2/go16.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/http2/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/http2/go17.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/http2/go17_not18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/http2/go17_not18.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/http2/go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/http2/go18.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/http2/go18_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/http2/go18_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/http2/go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/http2/go19.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/http2/go19_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/http2/go19_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/http2/gotrack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/http2/gotrack.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/http2/h2demo/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/http2/h2demo/README -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/http2/h2demo/rootCA.srl: -------------------------------------------------------------------------------- 1 | E2CE26BF3285059C 2 | -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/http2/h2demo/tmpl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/http2/h2demo/tmpl.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/http2/h2i/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/http2/h2i/README.md -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/http2/h2i/h2i.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/http2/h2i/h2i.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/http2/headermap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/http2/headermap.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/http2/hpack/hpack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/http2/hpack/hpack.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/http2/http2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/http2/http2_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/http2/not_go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/http2/not_go16.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/http2/not_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/http2/not_go17.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/http2/not_go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/http2/not_go18.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/http2/not_go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/http2/not_go19.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/http2/pipe_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/http2/pipe_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/http2/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/http2/server_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/http2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/http2/transport.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/http2/writesched.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/http2/writesched.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/http2/z_spec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/http2/z_spec_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/icmp/diag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/icmp/diag_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/icmp/dstunreach.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/icmp/dstunreach.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/icmp/echo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/icmp/echo.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/icmp/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/icmp/endpoint.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/icmp/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/icmp/example_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/icmp/extension.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/icmp/extension.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/icmp/helper_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/icmp/helper_posix.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/icmp/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/icmp/interface.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/icmp/ipv4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/icmp/ipv4.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/icmp/ipv4_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/icmp/ipv4_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/icmp/ipv6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/icmp/ipv6.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/icmp/listen_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/icmp/listen_posix.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/icmp/listen_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/icmp/listen_stub.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/icmp/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/icmp/message.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/icmp/message_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/icmp/message_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/icmp/messagebody.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/icmp/messagebody.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/icmp/mpls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/icmp/mpls.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/icmp/multipart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/icmp/multipart.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/icmp/packettoobig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/icmp/packettoobig.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/icmp/paramprob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/icmp/paramprob.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/icmp/sys_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/icmp/sys_freebsd.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/icmp/timeexceeded.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/icmp/timeexceeded.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/idna/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/idna/example_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/idna/idna.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/idna/idna.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/idna/idna_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/idna/idna_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/idna/punycode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/idna/punycode.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/idna/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/idna/tables.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/idna/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/idna/trieval.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/internal/iana/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/internal/iana/gen.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/batch.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/bpf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/bpf_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/control.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/control_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/control_bsd.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/control_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/control_stub.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/control_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/control_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/control_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/control_unix.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/defs_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/defs_darwin.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/defs_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/defs_freebsd.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/defs_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/defs_linux.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/defs_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/defs_netbsd.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/defs_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/defs_openbsd.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/defs_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/defs_solaris.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/dgramopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/dgramopt.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/doc.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/endpoint.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/example_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/gen.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/genericopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/genericopt.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/header.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/header_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/header_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/helper.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/iana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/iana.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/icmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/icmp.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/icmp_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/icmp_linux.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/icmp_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/icmp_stub.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/icmp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/icmp_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/packet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/packet.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/packet_go1_8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/packet_go1_8.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/packet_go1_9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/packet_go1_9.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/payload.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/payload_cmsg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/payload_cmsg.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/sockopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/sockopt.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/sockopt_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/sockopt_stub.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/sys_asmreq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/sys_asmreq.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/sys_asmreqn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/sys_asmreqn.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/sys_bpf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/sys_bpf.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/sys_bpf_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/sys_bpf_stub.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/sys_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/sys_bsd.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/sys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/sys_darwin.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/sys_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/sys_freebsd.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/sys_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/sys_linux.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/sys_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/sys_solaris.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/sys_ssmreq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/sys_ssmreq.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/sys_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/sys_stub.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/sys_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/sys_windows.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/unicast_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/unicast_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/zsys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/zsys_darwin.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/zsys_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/zsys_netbsd.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/zsys_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/zsys_openbsd.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv4/zsys_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv4/zsys_solaris.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/batch.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/bpf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/bpf_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/control.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/control_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/control_stub.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/control_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/control_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/control_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/control_unix.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/defs_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/defs_darwin.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/defs_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/defs_freebsd.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/defs_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/defs_linux.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/defs_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/defs_netbsd.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/defs_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/defs_openbsd.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/defs_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/defs_solaris.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/dgramopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/dgramopt.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/doc.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/endpoint.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/example_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/gen.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/genericopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/genericopt.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/header.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/header_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/header_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/helper.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/iana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/iana.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/icmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/icmp.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/icmp_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/icmp_bsd.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/icmp_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/icmp_linux.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/icmp_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/icmp_solaris.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/icmp_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/icmp_stub.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/icmp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/icmp_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/icmp_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/icmp_windows.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/payload.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/payload_cmsg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/payload_cmsg.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/sockopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/sockopt.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/sockopt_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/sockopt_stub.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/sockopt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/sockopt_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/sys_asmreq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/sys_asmreq.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/sys_bpf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/sys_bpf.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/sys_bpf_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/sys_bpf_stub.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/sys_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/sys_bsd.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/sys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/sys_darwin.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/sys_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/sys_freebsd.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/sys_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/sys_linux.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/sys_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/sys_solaris.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/sys_ssmreq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/sys_ssmreq.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/sys_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/sys_stub.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/sys_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/sys_windows.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/unicast_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/unicast_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/zsys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/zsys_darwin.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/zsys_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/zsys_netbsd.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/zsys_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/zsys_openbsd.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/ipv6/zsys_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/ipv6/zsys_solaris.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/lif/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/lif/address.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/lif/address_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/lif/address_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/lif/binary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/lif/binary.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/lif/defs_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/lif/defs_solaris.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/lif/lif.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/lif/lif.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/lif/link.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/lif/link.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/lif/link_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/lif/link_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/lif/sys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/lif/sys.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/lif/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/lif/syscall.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/nettest/conntest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/nettest/conntest.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/netutil/listen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/netutil/listen.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/proxy/direct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/proxy/direct.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/proxy/per_host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/proxy/per_host.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/proxy/proxy.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/proxy/proxy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/proxy/proxy_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/proxy/socks5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/proxy/socks5.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/publicsuffix/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/publicsuffix/gen.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/publicsuffix/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/publicsuffix/list.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/route/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/route/address.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/route/binary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/route/binary.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/route/defs_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/route/defs_darwin.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/route/defs_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/route/defs_netbsd.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/route/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/route/interface.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/route/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/route/message.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/route/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/route/route.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/route/route_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/route/route_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/route/sys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/route/sys.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/route/sys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/route/sys_darwin.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/route/sys_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/route/sys_freebsd.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/route/sys_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/route/sys_netbsd.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/route/sys_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/route/sys_openbsd.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/route/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/route/syscall.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/route/zsys_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/route/zsys_darwin.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/route/zsys_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/route/zsys_netbsd.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/trace/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/trace/events.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/trace/histogram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/trace/histogram.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/trace/trace_go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/trace/trace_go16.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/trace/trace_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/trace/trace_go17.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/trace/trace_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/trace/trace_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/webdav/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/webdav/file.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/webdav/file_go1.6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/webdav/file_go1.6.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/webdav/file_go1.7.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/webdav/file_go1.7.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/webdav/file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/webdav/file_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/webdav/if.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/webdav/if.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/webdav/if_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/webdav/if_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/webdav/lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/webdav/lock.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/webdav/lock_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/webdav/lock_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/webdav/prop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/webdav/prop.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/webdav/prop_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/webdav/prop_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/webdav/webdav.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/webdav/webdav.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/webdav/xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/webdav/xml.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/webdav/xml_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/webdav/xml_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/websocket/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/websocket/client.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/websocket/dial.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/websocket/dial.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/websocket/hybi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/websocket/hybi.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/websocket/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/websocket/server.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/net/xsrftoken/xsrf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/net/xsrftoken/xsrf.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/.gitattributes -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/.gitignore -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/AUTHORS -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/CONTRIBUTING.md -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/CONTRIBUTORS -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/README.md -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/cases/cases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/cases/cases.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/cases/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/cases/context.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/cases/fold.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/cases/fold.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/cases/fold_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/cases/fold_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/cases/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/cases/gen.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/cases/icu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/cases/icu.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/cases/icu_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/cases/icu_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/cases/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/cases/info.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/cases/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/cases/map.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/cases/map_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/cases/map_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/cases/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/cases/trieval.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/cmd/gotext/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/cmd/gotext/doc.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/cmd/gotext/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/cmd/gotext/main.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/collate/collate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/collate/collate.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/collate/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/collate/index.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/collate/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/collate/option.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/collate/reg_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/collate/reg_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/collate/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/collate/sort.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/collate/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/collate/tables.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/currency/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/currency/common.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/currency/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/currency/format.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/currency/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/currency/gen.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/currency/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/currency/query.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/currency/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/currency/tables.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/date/data_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/date/data_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/date/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/date/gen.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/date/gen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/date/gen_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/date/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/date/tables.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/doc.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/gen.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/internal/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/internal/gen.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/internal/gen/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/internal/gen/gen.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/internal/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/internal/match.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/internal/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/internal/tables.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/internal/tag/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/internal/tag/tag.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/internal/ucd/ucd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/internal/ucd/ucd.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/language/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/language/Makefile -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/language/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/language/common.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/language/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/language/doc.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/language/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/language/gen.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/language/go1_1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/language/go1_1.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/language/go1_2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/language/go1_2.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/language/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/language/index.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/language/lookup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/language/lookup.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/language/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/language/match.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/language/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/language/parse.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/language/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/language/tables.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/language/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/language/tags.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/message/catalog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/message/catalog.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/message/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/message/doc.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/message/fmt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/message/fmt_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/message/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/message/format.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/message/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/message/message.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/message/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/message/print.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/number/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/number/doc.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/number/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/number/format.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/number/number.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/number/number.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/number/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/number/option.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/runes/cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/runes/cond.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/runes/cond_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/runes/cond_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/runes/runes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/runes/runes.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/runes/runes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/runes/runes_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/search/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/search/index.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/search/pattern.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/search/pattern.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/search/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/search/search.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/search/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/search/tables.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/secure/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/secure/doc.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/unicode/bidi/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/unicode/bidi/gen.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/unicode/cldr/xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/unicode/cldr/xml.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/unicode/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/unicode/doc.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/width/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/width/gen.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/width/gen_common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/width/gen_common.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/width/runes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/width/runes_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/width/transform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/width/transform.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/width/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/width/trieval.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/golang.org/x/text/width/width.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/golang.org/x/text/width/width.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/google.golang.org/genproto/.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @pongad @jba 2 | -------------------------------------------------------------------------------- /graphql-gateway/vendor/google.golang.org/genproto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/google.golang.org/genproto/LICENSE -------------------------------------------------------------------------------- /graphql-gateway/vendor/google.golang.org/genproto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/google.golang.org/genproto/README.md -------------------------------------------------------------------------------- /graphql-gateway/vendor/google.golang.org/genproto/regen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/google.golang.org/genproto/regen.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/google.golang.org/genproto/regen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/google.golang.org/genproto/regen.sh -------------------------------------------------------------------------------- /graphql-gateway/vendor/google.golang.org/grpc/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/google.golang.org/grpc/.travis.yml -------------------------------------------------------------------------------- /graphql-gateway/vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /graphql-gateway/vendor/google.golang.org/grpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/google.golang.org/grpc/LICENSE -------------------------------------------------------------------------------- /graphql-gateway/vendor/google.golang.org/grpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/google.golang.org/grpc/Makefile -------------------------------------------------------------------------------- /graphql-gateway/vendor/google.golang.org/grpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/google.golang.org/grpc/README.md -------------------------------------------------------------------------------- /graphql-gateway/vendor/google.golang.org/grpc/backoff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/google.golang.org/grpc/backoff.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/google.golang.org/grpc/balancer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/google.golang.org/grpc/balancer.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/google.golang.org/grpc/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/google.golang.org/grpc/call.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/google.golang.org/grpc/call_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/google.golang.org/grpc/call_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/google.golang.org/grpc/clientconn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/google.golang.org/grpc/clientconn.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/google.golang.org/grpc/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/google.golang.org/grpc/codec.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/google.golang.org/grpc/codec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/google.golang.org/grpc/codec_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/google.golang.org/grpc/codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/google.golang.org/grpc/codegen.sh -------------------------------------------------------------------------------- /graphql-gateway/vendor/google.golang.org/grpc/codes/codes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/google.golang.org/grpc/codes/codes.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/google.golang.org/grpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/google.golang.org/grpc/doc.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/google.golang.org/grpc/go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/google.golang.org/grpc/go16.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/google.golang.org/grpc/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/google.golang.org/grpc/go17.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/google.golang.org/grpc/grpclb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/google.golang.org/grpc/grpclb.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/google.golang.org/grpc/grpclb_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/google.golang.org/grpc/grpclb_util.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/google.golang.org/grpc/interceptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/google.golang.org/grpc/interceptor.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/google.golang.org/grpc/naming/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/google.golang.org/grpc/naming/go17.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/google.golang.org/grpc/naming/go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/google.golang.org/grpc/naming/go18.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/google.golang.org/grpc/peer/peer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/google.golang.org/grpc/peer/peer.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/google.golang.org/grpc/pickfirst.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/google.golang.org/grpc/pickfirst.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/google.golang.org/grpc/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/google.golang.org/grpc/proxy.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/google.golang.org/grpc/proxy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/google.golang.org/grpc/proxy_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/google.golang.org/grpc/rpc_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/google.golang.org/grpc/rpc_util.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/google.golang.org/grpc/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/google.golang.org/grpc/server.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/google.golang.org/grpc/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/google.golang.org/grpc/server_test.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/google.golang.org/grpc/stats/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/google.golang.org/grpc/stats/stats.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/google.golang.org/grpc/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/google.golang.org/grpc/stream.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/google.golang.org/grpc/tap/tap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/google.golang.org/grpc/tap/tap.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/google.golang.org/grpc/test/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/google.golang.org/grpc/test/race.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/google.golang.org/grpc/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/google.golang.org/grpc/trace.go -------------------------------------------------------------------------------- /graphql-gateway/vendor/google.golang.org/grpc/vet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/graphql-gateway/vendor/google.golang.org/grpc/vet.sh -------------------------------------------------------------------------------- /product-service/.gitignore: -------------------------------------------------------------------------------- 1 | tmp 2 | -------------------------------------------------------------------------------- /product-service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/Dockerfile -------------------------------------------------------------------------------- /product-service/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/Gopkg.lock -------------------------------------------------------------------------------- /product-service/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/Gopkg.toml -------------------------------------------------------------------------------- /product-service/database/product.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/database/product.go -------------------------------------------------------------------------------- /product-service/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/main.go -------------------------------------------------------------------------------- /product-service/pb/product.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/pb/product.pb.go -------------------------------------------------------------------------------- /product-service/product/encode_decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/product/encode_decode.go -------------------------------------------------------------------------------- /product-service/product/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/product/endpoint.go -------------------------------------------------------------------------------- /product-service/product/grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/product/grpc.go -------------------------------------------------------------------------------- /product-service/product/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/product/service.go -------------------------------------------------------------------------------- /product-service/runner.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/runner.conf -------------------------------------------------------------------------------- /product-service/vendor/github.com/go-kit/kit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/go-kit/kit/.gitignore -------------------------------------------------------------------------------- /product-service/vendor/github.com/go-kit/kit/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/go-kit/kit/.travis.yml -------------------------------------------------------------------------------- /product-service/vendor/github.com/go-kit/kit/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/go-kit/kit/CONTRIBUTING.md -------------------------------------------------------------------------------- /product-service/vendor/github.com/go-kit/kit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/go-kit/kit/LICENSE -------------------------------------------------------------------------------- /product-service/vendor/github.com/go-kit/kit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/go-kit/kit/README.md -------------------------------------------------------------------------------- /product-service/vendor/github.com/go-kit/kit/circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/go-kit/kit/circle.yml -------------------------------------------------------------------------------- /product-service/vendor/github.com/go-kit/kit/cmd/kitgen/.ignore: -------------------------------------------------------------------------------- 1 | testdata/*/*/ 2 | -------------------------------------------------------------------------------- /product-service/vendor/github.com/go-kit/kit/coveralls.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/go-kit/kit/coveralls.bash -------------------------------------------------------------------------------- /product-service/vendor/github.com/go-kit/kit/endpoint/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/go-kit/kit/endpoint/doc.go -------------------------------------------------------------------------------- /product-service/vendor/github.com/go-kit/kit/lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/go-kit/kit/lint -------------------------------------------------------------------------------- /product-service/vendor/github.com/go-kit/kit/log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/go-kit/kit/log/README.md -------------------------------------------------------------------------------- /product-service/vendor/github.com/go-kit/kit/log/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/go-kit/kit/log/doc.go -------------------------------------------------------------------------------- /product-service/vendor/github.com/go-kit/kit/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/go-kit/kit/log/log.go -------------------------------------------------------------------------------- /product-service/vendor/github.com/go-kit/kit/log/log_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/go-kit/kit/log/log_test.go -------------------------------------------------------------------------------- /product-service/vendor/github.com/go-kit/kit/log/stdlib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/go-kit/kit/log/stdlib.go -------------------------------------------------------------------------------- /product-service/vendor/github.com/go-kit/kit/log/sync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/go-kit/kit/log/sync.go -------------------------------------------------------------------------------- /product-service/vendor/github.com/go-kit/kit/log/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/go-kit/kit/log/value.go -------------------------------------------------------------------------------- /product-service/vendor/github.com/go-kit/kit/metrics/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/go-kit/kit/metrics/doc.go -------------------------------------------------------------------------------- /product-service/vendor/github.com/go-kit/kit/sd/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/go-kit/kit/sd/doc.go -------------------------------------------------------------------------------- /product-service/vendor/github.com/go-kit/kit/sd/etcd/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/go-kit/kit/sd/etcd/doc.go -------------------------------------------------------------------------------- /product-service/vendor/github.com/go-kit/kit/sd/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/go-kit/kit/sd/factory.go -------------------------------------------------------------------------------- /product-service/vendor/github.com/go-kit/kit/sd/instancer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/go-kit/kit/sd/instancer.go -------------------------------------------------------------------------------- /product-service/vendor/github.com/go-kit/kit/sd/lb/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/go-kit/kit/sd/lb/doc.go -------------------------------------------------------------------------------- /product-service/vendor/github.com/go-kit/kit/sd/lb/random.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/go-kit/kit/sd/lb/random.go -------------------------------------------------------------------------------- /product-service/vendor/github.com/go-kit/kit/sd/lb/retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/go-kit/kit/sd/lb/retry.go -------------------------------------------------------------------------------- /product-service/vendor/github.com/go-kit/kit/sd/registrar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/go-kit/kit/sd/registrar.go -------------------------------------------------------------------------------- /product-service/vendor/github.com/go-kit/kit/sd/zk/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/go-kit/kit/sd/zk/client.go -------------------------------------------------------------------------------- /product-service/vendor/github.com/go-kit/kit/sd/zk/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/go-kit/kit/sd/zk/doc.go -------------------------------------------------------------------------------- /product-service/vendor/github.com/go-kit/kit/tracing/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/go-kit/kit/tracing/doc.go -------------------------------------------------------------------------------- /product-service/vendor/github.com/go-kit/kit/util/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/go-kit/kit/util/README.md -------------------------------------------------------------------------------- /product-service/vendor/github.com/go-logfmt/logfmt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/go-logfmt/logfmt/LICENSE -------------------------------------------------------------------------------- /product-service/vendor/github.com/go-logfmt/logfmt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/go-logfmt/logfmt/README.md -------------------------------------------------------------------------------- /product-service/vendor/github.com/go-logfmt/logfmt/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/go-logfmt/logfmt/decode.go -------------------------------------------------------------------------------- /product-service/vendor/github.com/go-logfmt/logfmt/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/go-logfmt/logfmt/doc.go -------------------------------------------------------------------------------- /product-service/vendor/github.com/go-logfmt/logfmt/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/go-logfmt/logfmt/encode.go -------------------------------------------------------------------------------- /product-service/vendor/github.com/go-logfmt/logfmt/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/go-logfmt/logfmt/fuzz.go -------------------------------------------------------------------------------- /product-service/vendor/github.com/go-stack/stack/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/go-stack/stack/.travis.yml -------------------------------------------------------------------------------- /product-service/vendor/github.com/go-stack/stack/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/go-stack/stack/LICENSE.md -------------------------------------------------------------------------------- /product-service/vendor/github.com/go-stack/stack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/go-stack/stack/README.md -------------------------------------------------------------------------------- /product-service/vendor/github.com/go-stack/stack/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/go-stack/stack/stack.go -------------------------------------------------------------------------------- /product-service/vendor/github.com/golang/protobuf/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/golang/protobuf/.gitignore -------------------------------------------------------------------------------- /product-service/vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/golang/protobuf/AUTHORS -------------------------------------------------------------------------------- /product-service/vendor/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /product-service/vendor/github.com/golang/protobuf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/golang/protobuf/Makefile -------------------------------------------------------------------------------- /product-service/vendor/github.com/golang/protobuf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/golang/protobuf/README.md -------------------------------------------------------------------------------- /product-service/vendor/github.com/kr/logfmt/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | *.swp 3 | *.prof 4 | -------------------------------------------------------------------------------- /product-service/vendor/github.com/kr/logfmt/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/kr/logfmt/Readme -------------------------------------------------------------------------------- /product-service/vendor/github.com/kr/logfmt/bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/kr/logfmt/bench_test.go -------------------------------------------------------------------------------- /product-service/vendor/github.com/kr/logfmt/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/kr/logfmt/decode.go -------------------------------------------------------------------------------- /product-service/vendor/github.com/kr/logfmt/decode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/kr/logfmt/decode_test.go -------------------------------------------------------------------------------- /product-service/vendor/github.com/kr/logfmt/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/kr/logfmt/example_test.go -------------------------------------------------------------------------------- /product-service/vendor/github.com/kr/logfmt/scanner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/kr/logfmt/scanner.go -------------------------------------------------------------------------------- /product-service/vendor/github.com/kr/logfmt/scanner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/kr/logfmt/scanner_test.go -------------------------------------------------------------------------------- /product-service/vendor/github.com/kr/logfmt/unquote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/github.com/kr/logfmt/unquote.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/.gitattributes -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/.gitignore -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/CONTRIBUTING.md -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/README.md -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/bpf/asm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/bpf/asm.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/bpf/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/bpf/constants.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/bpf/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/bpf/doc.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/bpf/instructions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/bpf/instructions.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/bpf/setter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/bpf/setter.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/bpf/vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/bpf/vm.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/bpf/vm_aluop_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/bpf/vm_aluop_test.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/bpf/vm_bpf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/bpf/vm_bpf_test.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/bpf/vm_jump_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/bpf/vm_jump_test.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/bpf/vm_load_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/bpf/vm_load_test.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/bpf/vm_ret_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/bpf/vm_ret_test.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/bpf/vm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/bpf/vm_test.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/context/context.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/context/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/context/go17.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/context/go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/context/go19.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/context/pre_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/context/pre_go17.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/context/pre_go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/context/pre_go19.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/dict/dict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/dict/dict.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/html/atom/atom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/html/atom/atom.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/html/atom/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/html/atom/gen.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/html/atom/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/html/atom/table.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/html/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/html/const.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/html/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/html/doc.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/html/doctype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/html/doctype.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/html/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/html/entity.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/html/entity_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/html/entity_test.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/html/escape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/html/escape.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/html/foreign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/html/foreign.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/html/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/html/node.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/html/node_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/html/node_test.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/html/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/html/parse.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/html/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/html/render.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/html/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/html/token.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/http2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/http2/Dockerfile -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/http2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/http2/README -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/http2/ciphers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/http2/ciphers.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/http2/go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/http2/go16.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/http2/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/http2/go17.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/http2/go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/http2/go18.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/http2/go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/http2/go19.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/http2/gotrack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/http2/gotrack.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/http2/h2demo/rootCA.srl: -------------------------------------------------------------------------------- 1 | E2CE26BF3285059C 2 | -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/http2/h2i/h2i.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/http2/h2i/h2i.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/http2/not_go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/http2/not_go16.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/http2/not_go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/http2/not_go17.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/http2/not_go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/http2/not_go18.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/http2/not_go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/http2/not_go19.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/icmp/diag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/icmp/diag_test.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/icmp/echo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/icmp/echo.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/icmp/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/icmp/endpoint.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/icmp/extension.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/icmp/extension.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/icmp/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/icmp/interface.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/icmp/ipv4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/icmp/ipv4.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/icmp/ipv4_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/icmp/ipv4_test.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/icmp/ipv6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/icmp/ipv6.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/icmp/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/icmp/message.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/icmp/mpls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/icmp/mpls.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/icmp/multipart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/icmp/multipart.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/icmp/paramprob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/icmp/paramprob.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/idna/idna.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/idna/idna.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/idna/idna_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/idna/idna_test.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/idna/punycode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/idna/punycode.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/idna/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/idna/tables.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/idna/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/idna/trieval.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/ipv4/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/ipv4/batch.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/ipv4/bpf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/ipv4/bpf_test.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/ipv4/control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/ipv4/control.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/ipv4/dgramopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/ipv4/dgramopt.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/ipv4/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/ipv4/doc.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/ipv4/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/ipv4/endpoint.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/ipv4/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/ipv4/gen.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/ipv4/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/ipv4/header.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/ipv4/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/ipv4/helper.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/ipv4/iana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/ipv4/iana.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/ipv4/icmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/ipv4/icmp.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/ipv4/icmp_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/ipv4/icmp_stub.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/ipv4/icmp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/ipv4/icmp_test.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/ipv4/packet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/ipv4/packet.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/ipv4/payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/ipv4/payload.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/ipv4/sockopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/ipv4/sockopt.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/ipv4/sys_bpf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/ipv4/sys_bpf.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/ipv4/sys_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/ipv4/sys_bsd.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/ipv4/sys_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/ipv4/sys_linux.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/ipv4/sys_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/ipv4/sys_stub.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/ipv6/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/ipv6/batch.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/ipv6/bpf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/ipv6/bpf_test.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/ipv6/control.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/ipv6/control.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/ipv6/dgramopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/ipv6/dgramopt.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/ipv6/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/ipv6/doc.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/ipv6/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/ipv6/endpoint.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/ipv6/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/ipv6/gen.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/ipv6/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/ipv6/header.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/ipv6/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/ipv6/helper.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/ipv6/iana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/ipv6/iana.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/ipv6/icmp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/ipv6/icmp.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/ipv6/icmp_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/ipv6/icmp_bsd.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/ipv6/icmp_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/ipv6/icmp_stub.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/ipv6/icmp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/ipv6/icmp_test.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/ipv6/payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/ipv6/payload.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/ipv6/sockopt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/ipv6/sockopt.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/ipv6/sys_bpf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/ipv6/sys_bpf.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/ipv6/sys_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/ipv6/sys_bsd.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/ipv6/sys_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/ipv6/sys_linux.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/ipv6/sys_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/ipv6/sys_stub.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/lif/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/lif/address.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/lif/binary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/lif/binary.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/lif/lif.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/lif/lif.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/lif/link.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/lif/link.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/lif/link_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/lif/link_test.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/lif/sys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/lif/sys.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/lif/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/lif/syscall.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/netutil/listen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/netutil/listen.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/proxy/direct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/proxy/direct.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/proxy/per_host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/proxy/per_host.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/proxy/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/proxy/proxy.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/proxy/socks5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/proxy/socks5.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/route/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/route/address.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/route/binary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/route/binary.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/route/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/route/message.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/route/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/route/route.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/route/sys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/route/sys.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/route/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/route/syscall.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/trace/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/trace/events.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/webdav/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/webdav/file.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/webdav/if.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/webdav/if.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/webdav/if_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/webdav/if_test.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/webdav/lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/webdav/lock.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/webdav/prop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/webdav/prop.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/webdav/webdav.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/webdav/webdav.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/webdav/xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/webdav/xml.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/websocket/dial.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/websocket/dial.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/websocket/hybi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/websocket/hybi.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/net/xsrftoken/xsrf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/net/xsrftoken/xsrf.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/text/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/text/.gitattributes -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/text/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/text/.gitignore -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/text/AUTHORS -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/text/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/text/CONTRIBUTING.md -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/text/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/text/CONTRIBUTORS -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/text/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/text/README.md -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/text/cases/cases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/text/cases/cases.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/text/cases/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/text/cases/context.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/text/cases/fold.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/text/cases/fold.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/text/cases/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/text/cases/gen.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/text/cases/icu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/text/cases/icu.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/text/cases/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/text/cases/info.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/text/cases/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/text/cases/map.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/text/cases/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/text/cases/trieval.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/text/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/text/collate/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/text/collate/index.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/text/collate/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/text/collate/sort.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/text/currency/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/text/currency/gen.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/text/date/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/text/date/gen.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/text/date/gen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/text/date/gen_test.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/text/date/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/text/date/tables.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/text/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/text/doc.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/text/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/text/gen.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/text/internal/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/text/internal/gen.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/text/language/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/text/language/doc.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/text/language/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/text/language/gen.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/text/language/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/text/language/tags.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/text/message/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/text/message/doc.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/text/message/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/text/message/print.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/text/number/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/text/number/doc.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/text/number/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/text/number/format.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/text/number/number.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/text/number/number.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/text/number/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/text/number/option.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/text/runes/cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/text/runes/cond.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/text/runes/runes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/text/runes/runes.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/text/search/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/text/search/index.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/text/search/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/text/search/search.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/text/search/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/text/search/tables.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/text/secure/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/text/secure/doc.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/text/unicode/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/text/unicode/doc.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/text/width/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/text/width/gen.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/text/width/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/text/width/trieval.go -------------------------------------------------------------------------------- /product-service/vendor/golang.org/x/text/width/width.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/golang.org/x/text/width/width.go -------------------------------------------------------------------------------- /product-service/vendor/google.golang.org/genproto/.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @pongad @jba 2 | -------------------------------------------------------------------------------- /product-service/vendor/google.golang.org/genproto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/google.golang.org/genproto/LICENSE -------------------------------------------------------------------------------- /product-service/vendor/google.golang.org/grpc/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/google.golang.org/grpc/.travis.yml -------------------------------------------------------------------------------- /product-service/vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /product-service/vendor/google.golang.org/grpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/google.golang.org/grpc/LICENSE -------------------------------------------------------------------------------- /product-service/vendor/google.golang.org/grpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/google.golang.org/grpc/Makefile -------------------------------------------------------------------------------- /product-service/vendor/google.golang.org/grpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/google.golang.org/grpc/README.md -------------------------------------------------------------------------------- /product-service/vendor/google.golang.org/grpc/backoff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/google.golang.org/grpc/backoff.go -------------------------------------------------------------------------------- /product-service/vendor/google.golang.org/grpc/balancer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/google.golang.org/grpc/balancer.go -------------------------------------------------------------------------------- /product-service/vendor/google.golang.org/grpc/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/google.golang.org/grpc/call.go -------------------------------------------------------------------------------- /product-service/vendor/google.golang.org/grpc/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/google.golang.org/grpc/codec.go -------------------------------------------------------------------------------- /product-service/vendor/google.golang.org/grpc/codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/google.golang.org/grpc/codegen.sh -------------------------------------------------------------------------------- /product-service/vendor/google.golang.org/grpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/google.golang.org/grpc/doc.go -------------------------------------------------------------------------------- /product-service/vendor/google.golang.org/grpc/go16.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/google.golang.org/grpc/go16.go -------------------------------------------------------------------------------- /product-service/vendor/google.golang.org/grpc/go17.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/google.golang.org/grpc/go17.go -------------------------------------------------------------------------------- /product-service/vendor/google.golang.org/grpc/grpclb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/google.golang.org/grpc/grpclb.go -------------------------------------------------------------------------------- /product-service/vendor/google.golang.org/grpc/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/google.golang.org/grpc/proxy.go -------------------------------------------------------------------------------- /product-service/vendor/google.golang.org/grpc/rpc_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/google.golang.org/grpc/rpc_util.go -------------------------------------------------------------------------------- /product-service/vendor/google.golang.org/grpc/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/google.golang.org/grpc/server.go -------------------------------------------------------------------------------- /product-service/vendor/google.golang.org/grpc/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/google.golang.org/grpc/stream.go -------------------------------------------------------------------------------- /product-service/vendor/google.golang.org/grpc/tap/tap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/google.golang.org/grpc/tap/tap.go -------------------------------------------------------------------------------- /product-service/vendor/google.golang.org/grpc/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/google.golang.org/grpc/trace.go -------------------------------------------------------------------------------- /product-service/vendor/google.golang.org/grpc/vet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/product-service/vendor/google.golang.org/grpc/vet.sh -------------------------------------------------------------------------------- /proto/product.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qneyrat/grpc-go-kit-example/HEAD/proto/product.proto --------------------------------------------------------------------------------