mirror of
https://github.com/zeromicro/go-zero.git
synced 2026-05-14 02:10:00 +08:00
12 lines
200 B
Protocol Buffer
12 lines
200 B
Protocol Buffer
|
|
syntax = "proto3";
|
|||
|
|
|
|||
|
|
// 场景04:最底层基础类型(C 层)
|
|||
|
|
package base;
|
|||
|
|
|
|||
|
|
option go_package = "example.com/demo/s04_transitive/pb";
|
|||
|
|
|
|||
|
|
message BaseResp {
|
|||
|
|
int32 code = 1;
|
|||
|
|
string msg = 2;
|
|||
|
|
}
|