mirror of
https://github.com/zeromicro/go-zero.git
synced 2026-05-14 02:10:00 +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;
|
|||
|
|
}
|