summaryrefslogtreecommitdiff
path: root/internal/grpc_test/echo.proto
diff options
context:
space:
mode:
authorGrégoire Duchêne <gduchene@awhk.org>2022-05-07 12:13:38 +0100
committerGrégoire Duchêne <gduchene@awhk.org>2022-05-07 12:13:38 +0100
commit163d745b78a0451087bf4a12216437c8dcbf888f (patch)
tree98cebdeb1a878c8c290d20411aa68796169c5ca2 /internal/grpc_test/echo.proto
parentf36b620ffb95e14ced6b9f21bad1df153f560109 (diff)
Fix package name
Diffstat (limited to 'internal/grpc_test/echo.proto')
-rw-r--r--internal/grpc_test/echo.proto4
1 files changed, 2 insertions, 2 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);