mirror of
https://github.com/go-micro/go-micro.git
synced 2025-01-05 10:20:53 +02:00
13 lines
214 B
Protocol Buffer
13 lines
214 B
Protocol Buffer
|
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;
|
||
|
}
|