initial commit
This commit is contained in:
20
third_party/libhv/examples/protorpc/proto/base.proto
vendored
Executable file
20
third_party/libhv/examples/protorpc/proto/base.proto
vendored
Executable file
@@ -0,0 +1,20 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package protorpc;
|
||||
|
||||
message Error {
|
||||
int32 code = 1;
|
||||
string message = 2;
|
||||
}
|
||||
|
||||
message Request {
|
||||
uint64 id = 1;
|
||||
string method = 2;
|
||||
repeated bytes params = 3;
|
||||
}
|
||||
|
||||
message Response {
|
||||
uint64 id = 1;
|
||||
bytes result = 2;
|
||||
Error error = 3;
|
||||
}
|
||||
Reference in New Issue
Block a user