mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-27 12:28:40 +08:00
17 lines
190 B
Protocol Buffer
Executable File
17 lines
190 B
Protocol Buffer
Executable File
syntax = "proto3";
|
|
|
|
package add;
|
|
|
|
message addReq {
|
|
string book = 1;
|
|
int64 price = 2;
|
|
}
|
|
|
|
message addResp {
|
|
bool ok = 1;
|
|
}
|
|
|
|
service adder {
|
|
rpc add(addReq) returns(addResp);
|
|
}
|