micro/codec/protorpc/envelope.proto

13 lines
217 B
Protocol Buffer
Raw Normal View History

2015-11-28 18:54:38 +00:00
package protorpc;
2015-11-28 16:39:25 +00: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;
}