mirror of
https://github.com/zeromicro/go-zero.git
synced 2026-05-14 02:10:00 +08:00
13 lines
131 B
Protocol Buffer
13 lines
131 B
Protocol Buffer
|
|
// test proto
|
||
|
|
syntax = "proto3";
|
||
|
|
|
||
|
|
package base;
|
||
|
|
|
||
|
|
message CommonReq {
|
||
|
|
string in = 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
message CommonReply {
|
||
|
|
string out = 1;
|
||
|
|
}
|