mirror of
https://github.com/zeromicro/go-zero.git
synced 2026-05-10 08:29:58 +08:00
17 lines
207 B
Protocol Buffer
17 lines
207 B
Protocol Buffer
|
|
syntax = "proto3";
|
||
|
|
|
||
|
|
package check;
|
||
|
|
|
||
|
|
message checkReq {
|
||
|
|
string book = 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
message checkResp {
|
||
|
|
bool found = 1;
|
||
|
|
int64 price = 2;
|
||
|
|
}
|
||
|
|
|
||
|
|
service checker {
|
||
|
|
rpc check(checkReq) returns(checkResp);
|
||
|
|
}
|