Files
origin/rpc/rpc.proto
2020-12-10 15:50:42 +08:00

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;
}