summaryrefslogtreecommitdiff
path: root/grpc_testing/echo.proto
diff options
context:
space:
mode:
authorGrégoire Duchêne <gduchene@awhk.org>2022-05-07 11:57:48 +0100
committerGrégoire Duchêne <gduchene@awhk.org>2022-05-07 11:57:48 +0100
commitf36b620ffb95e14ced6b9f21bad1df153f560109 (patch)
tree2d31b2fccc416cf79d7d5491cf44431066307334 /grpc_testing/echo.proto
parentfd7dcf508a153ddb8c9bc7ff50b4a406a25eb67c (diff)
Move gRPC tests under internal/
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;
-}