mirror of
https://github.com/duanhf2012/origin.git
synced 2026-02-04 06:54:45 +08:00
17 lines
290 B
Protocol Buffer
17 lines
290 B
Protocol Buffer
syntax = "proto3";
|
|
package rpc;
|
|
option go_package =".;rpc";
|
|
message PBRpcRequestData{
|
|
uint64 Seq = 1;
|
|
string ServiceMethod = 2;
|
|
bool NoReply = 3;
|
|
bytes InParam = 4;
|
|
}
|
|
|
|
message PBRpcResponseData{
|
|
uint64 Seq = 1;
|
|
string Error = 2;
|
|
bytes Reply = 3;
|
|
}
|
|
|