mirror of
https://github.com/zeromicro/go-zero.git
synced 2026-05-10 16:30:01 +08:00
13 lines
191 B
Protocol Buffer
13 lines
191 B
Protocol Buffer
|
|
syntax = "proto3";
|
||
|
|
|
||
|
|
package middleware;
|
||
|
|
|
||
|
|
option go_package = "example.com/demo/pb";
|
||
|
|
|
||
|
|
import "base.proto";
|
||
|
|
|
||
|
|
message RequestMeta {
|
||
|
|
string trace_id = 1;
|
||
|
|
base.BaseResp base = 2;
|
||
|
|
}
|