aboutsummaryrefslogtreecommitdiff
path: root/internal/grpc_test/echo.proto
blob: 528c17c3928f5c78d1972de0d846334efd62a91e (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_test;
option go_package = ".;grpc_test";

service Echo {
  rpc Echo(EchoRequest) returns (EchoResponse);
}

message EchoRequest {
  string message = 1;
}

message EchoResponse {
  string message = 1;
}