micro/codec/protorpc/envelope.proto

13 lines
217 B
Protocol Buffer
Raw Normal View History

2015-11-28 21:54:38 +03:00
package protorpc;
2015-11-28 19:39:25 +03:00
message Request {
optional string service_method = 1;
optional fixed64 seq = 2;
}
message Response {
optional string service_method = 1;
optional fixed64 seq = 2;
optional string error = 3;
}