aboutsummaryrefslogtreecommitdiff
path: root/internal/grpc_test/echo.proto
blob: 513a7bc00ec9eab3bf36ceb617d9f23131b37d37 (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;
}