summaryrefslogtreecommitdiff
path: root/tests/plugins/grpc/configs/test.proto
diff options
context:
space:
mode:
Diffstat (limited to 'tests/plugins/grpc/configs/test.proto')
-rw-r--r--tests/plugins/grpc/configs/test.proto33
1 files changed, 0 insertions, 33 deletions
diff --git a/tests/plugins/grpc/configs/test.proto b/tests/plugins/grpc/configs/test.proto
deleted file mode 100644
index 2e1c90a9..00000000
--- a/tests/plugins/grpc/configs/test.proto
+++ /dev/null
@@ -1,33 +0,0 @@
-syntax = "proto3";
-
-package service;
-option go_package = "./;";
-
-service Test {
- rpc Echo (Message) returns (Message) {
- }
-
- rpc Throw (Message) returns (Message) {
- }
-
- rpc Die (Message) returns (Message) {
- }
-
- rpc Info (Message) returns (Message) {
- }
-
- rpc Ping (EmptyMessage) returns (EmptyMessage) {
- }
-}
-
-message Message {
- string msg = 1;
-}
-
-message EmptyMessage {
-}
-
-message DetailsMessageForException {
- uint64 code = 1;
- string message = 2;
-} \ No newline at end of file