mirror of
https://github.com/ocaml-tracing/ocaml-opentelemetry.git
synced 2026-03-08 20:07:55 -04:00
10 lines
210 B
Protocol Buffer
10 lines
210 B
Protocol Buffer
|
|
syntax = "proto3";
|
|
|
|
// from https://pkg.go.dev/google.golang.org/genproto/googleapis/rpc/status?utm_source=godoc#Status
|
|
|
|
message Status {
|
|
int32 code = 1;
|
|
bytes message = 2;
|
|
repeated bytes details = 3;
|
|
}
|