aboutsummaryrefslogtreecommitdiffstats
path: root/examples/grpc/ping-pong-grpc.proto
blob: da6d9490c5bdfab1521051cefe108a862b236ef2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
syntax = "proto3";

package PP;

message Ping {
    int32 count = 1;
}

message Pong {
    int32 count = 1;
}

service MyApi {
    rpc pingPong(Ping) returns (Pong) {}
}