Files
go-zero/tools/goctl/rpc/test/proto/04_transitive/middleware.proto

14 lines
267 B
Protocol Buffer
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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;
}