mirror of
https://github.com/zeromicro/go-zero.git
synced 2026-05-09 16:10:00 +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;
|
|
}
|