From 393107be8aa0c8f4bf7d27ddf4aaf81d6f9d1c58 Mon Sep 17 00:00:00 2001 From: Jae-Heon Ji <32578710+jaeheonji@users.noreply.github.com> Date: Sat, 17 Jun 2023 23:13:37 +0900 Subject: [PATCH 1/2] Fix package url for grpc integration Signed-off-by: Jae-Heon Ji <32578710+jaeheonji@users.noreply.github.com> --- .../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..396f7890650 100644 --- a/daprdocs/content/en/developing-applications/integrations/gRPC-integration.md +++ b/daprdocs/content/en/developing-applications/integrations/gRPC-integration.md @@ -131,7 +131,7 @@ The following steps will show how to create an app that exposes a server for wit "github.com/golang/protobuf/ptypes/any" "github.com/golang/protobuf/ptypes/empty" - commonv1pb "github.com/dapr/dapr/pkg/proto/common/v1" + commonv1pb "github.com/dapr/go-sdk/dapr/proto/common/v1" pb "github.com/dapr/go-sdk/dapr/proto/runtime/v1" "google.golang.org/grpc" ) From 8295bf722897721dc8e366247205cbe8f0163dc2 Mon Sep 17 00:00:00 2001 From: Jae-Heon Ji Date: Thu, 29 Jun 2023 22:15:24 +0900 Subject: [PATCH 2/2] Update package url to dapr repository --- .../developing-applications/integrations/gRPC-integration.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/daprdocs/content/en/developing-applications/integrations/gRPC-integration.md b/daprdocs/content/en/developing-applications/integrations/gRPC-integration.md index 396f7890650..cd3380c972d 100644 --- a/daprdocs/content/en/developing-applications/integrations/gRPC-integration.md +++ b/daprdocs/content/en/developing-applications/integrations/gRPC-integration.md @@ -131,8 +131,8 @@ The following steps will show how to create an app that exposes a server for wit "github.com/golang/protobuf/ptypes/any" "github.com/golang/protobuf/ptypes/empty" - commonv1pb "github.com/dapr/go-sdk/dapr/proto/common/v1" - pb "github.com/dapr/go-sdk/dapr/proto/runtime/v1" + commonv1pb "github.com/dapr/dapr/pkg/proto/common/v1" + pb "github.com/dapr/dapr/pkg/proto/runtime/v1" "google.golang.org/grpc" ) ```