summaryrefslogtreecommitdiff
path: root/grpc_testing/echo.proto
blob: 9b1fffff137a90ebd6acfbeadbc05afabcff1eda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 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;
}