summaryrefslogtreecommitdiff
path: root/grpc_testing/echo.proto
diff options
context:
space:
mode:
Diffstat (limited to 'grpc_testing/echo.proto')
-rw-r--r--grpc_testing/echo.proto18
1 files changed, 0 insertions, 18 deletions
diff --git a/grpc_testing/echo.proto b/grpc_testing/echo.proto
deleted file mode 100644
index 513a7bc..0000000
--- a/grpc_testing/echo.proto
+++ /dev/null
@@ -1,18 +0,0 @@
-// SPDX-License-Identifier: CC0-1.0
-
-syntax = "proto3";
-
-package grpc_testing;
-option go_package = ".;grpc_testing";
-
-service Echo {
- rpc Echo(EchoRequest) returns (EchoResponse);
-}
-
-message EchoRequest {
- string message = 1;
-}
-
-message EchoResponse {
- string message = 1;
-}