From ccf3d8d333af5c021f8d58869def9f7a48c26501 Mon Sep 17 00:00:00 2001 From: John Rowley Date: Fri, 2 Jul 2021 07:38:10 -0700 Subject: [PATCH] fix a broken link to the addsvc example The documentation included a stale link to where the addsvc example used to live from before the examples were extracted into their own git repo. --- transport/grpc/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transport/grpc/README.md b/transport/grpc/README.md index f57dc99fb..b6c1ce239 100644 --- a/transport/grpc/README.md +++ b/transport/grpc/README.md @@ -49,6 +49,6 @@ for an example. That's it! The gRPC binding can be bound to a listener and serve normal gRPC requests. And within your service, you can use standard go-kit components and idioms. -See [addsvc](https://github.com/go-kit/kit/tree/master/examples/addsvc) for +See [addsvc](https://github.com/go-kit/examples/blob/master/addsvc/) for a complete working example with gRPC support. And remember: go-kit services can support multiple transports simultaneously.