10 lines
241 B
Protocol Buffer
10 lines
241 B
Protocol Buffer
syntax = "proto3";
|
|
package common.trace.v1;
|
|
option go_package = "github.com/tech/sendico/pkg/proto/common/trace/v1;tracev1";
|
|
|
|
message TraceContext {
|
|
string request_ref = 1;
|
|
string idempotency_key = 2;
|
|
string trace_ref = 3;
|
|
}
|