mirror of
https://github.com/zeromicro/go-zero.git
synced 2026-05-10 16:30:01 +08:00
11 lines
138 B
Protocol Buffer
11 lines
138 B
Protocol Buffer
|
|
syntax = "proto3";
|
||
|
|
|
||
|
|
package base;
|
||
|
|
|
||
|
|
option go_package = "example.com/demo/pb";
|
||
|
|
|
||
|
|
message BaseResp {
|
||
|
|
int32 code = 1;
|
||
|
|
string msg = 2;
|
||
|
|
}
|