mirror of
https://github.com/zeromicro/go-zero.git
synced 2026-05-10 08:29:58 +08:00
14 lines
267 B
Protocol Buffer
14 lines
267 B
Protocol Buffer
syntax = "proto3";
|
||
|
||
// 场景04:中间层(B 层),import base.proto
|
||
package middleware;
|
||
|
||
option go_package = "example.com/demo/s04_transitive/pb";
|
||
|
||
import "base.proto";
|
||
|
||
message RequestMeta {
|
||
string trace_id = 1;
|
||
base.BaseResp base = 2;
|
||
}
|