mirror of
https://github.com/zeromicro/go-zero.git
synced 2026-05-10 16:30:01 +08:00
15 lines
177 B
Protocol Buffer
15 lines
177 B
Protocol Buffer
|
|
syntax = "proto3";
|
||
|
|
|
||
|
|
package ext;
|
||
|
|
|
||
|
|
option go_package = "example.com/demo/pb";
|
||
|
|
|
||
|
|
message ExtReq {
|
||
|
|
string key = 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
message ExtReply {
|
||
|
|
string value = 1;
|
||
|
|
int32 code = 2;
|
||
|
|
}
|