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