summaryrefslogtreecommitdiff
path: root/src/main/java/com/orbekk/protobuf/Rpc.proto
blob: 49e60eae73cb53de9276a18a5acacc95959ea266 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.orbekk.protobuf;

// Next tag: 4
message Request {
    optional string full_service_name = 1;
    optional string method_name = 2;
    optional bytes request_proto = 3;
}

// Next tag: 4
message Response {
    optional bytes response_proto = 1;
    optional int32 error = 2 [default = 0];
    optional string error_message = 3;
}