mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-25 02:08:44 +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;
|
||
|
}
|