aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--internal/grpc_test/echo.proto4
-rw-r--r--internal/grpc_test/grpc_test.go2
2 files changed, 3 insertions, 3 deletions
diff --git a/internal/grpc_test/echo.proto b/internal/grpc_test/echo.proto
index 513a7bc..528c17c 100644
--- a/internal/grpc_test/echo.proto
+++ b/internal/grpc_test/echo.proto
@@ -2,8 +2,8 @@
syntax = "proto3";
-package grpc_testing;
-option go_package = ".;grpc_testing";
+package grpc_test;
+option go_package = ".;grpc_test";
service Echo {
rpc Echo(EchoRequest) returns (EchoResponse);
diff --git a/internal/grpc_test/grpc_test.go b/internal/grpc_test/grpc_test.go
index 1bd782d..6c4ffb9 100644
--- a/internal/grpc_test/grpc_test.go
+++ b/internal/grpc_test/grpc_test.go
@@ -1,6 +1,6 @@
// SPDX-License-Identifier: CC0-1.0
-package grpc_testing
+package grpc_test
//go:generate protoc --go_out=. --go-grpc_out=. echo.proto