1
0
mirror of https://github.com/go-micro/go-micro.git synced 2024-12-18 08:26:38 +02:00
go-micro/codec/protorpc/envelope.proto

13 lines
217 B
Protocol Buffer
Raw Normal View History

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