aboutsummaryrefslogtreecommitdiff
path: root/examples/multiservice/barservice.proto
blob: bc207f277b4259e2deec330098cc09eb85d1a2ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
syntax = "proto3";

service Bar {
    rpc MakeBar(BarReq) returns (BarResp);
}

message BarReq {
    int32 a = 1;
}

message BarResp {
    int32 b = 2;
}