From 8781fa15b363f3525579adcffd36c46b850f5536 Mon Sep 17 00:00:00 2001 From: Jae-Heon Ji <32578710+jaeheonji@users.noreply.github.com> Date: Fri, 30 Jun 2023 23:52:25 +0900 Subject: [PATCH] Fix package url for grpc integration (#3563) * Fix package url for grpc integration Signed-off-by: Jae-Heon Ji <32578710+jaeheonji@users.noreply.github.com> * Update package url to dapr repository --------- Signed-off-by: Jae-Heon Ji <32578710+jaeheonji@users.noreply.github.com> Co-authored-by: Hannah Hunter <94493363+hhunter-ms@users.noreply.github.com> Co-authored-by: Yaron Schneider --- .../en/developing-applications/integrations/gRPC-integration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daprdocs/content/en/developing-applications/integrations/gRPC-integration.md b/daprdocs/content/en/developing-applications/integrations/gRPC-integration.md index c7999a63798..cd3380c972d 100644 --- a/daprdocs/content/en/developing-applications/integrations/gRPC-integration.md +++ b/daprdocs/content/en/developing-applications/integrations/gRPC-integration.md @@ -132,7 +132,7 @@ The following steps will show how to create an app that exposes a server for wit "github.com/golang/protobuf/ptypes/empty" commonv1pb "github.com/dapr/dapr/pkg/proto/common/v1" - pb "github.com/dapr/go-sdk/dapr/proto/runtime/v1" + pb "github.com/dapr/dapr/pkg/proto/runtime/v1" "google.golang.org/grpc" ) ```