micro/codec/proto/envelope.proto

13 lines
214 B
Protocol Buffer
Raw Normal View History

2015-11-28 19:39:25 +03:00
package proto;
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;
}