Files
contracts/proto/google/rpc/status.proto
Дмитрий 01821526d2 first commit
2026-03-24 14:18:09 +03:00

13 lines
182 B
Protocol Buffer

syntax = "proto3";
package google.rpc;
import "google/protobuf/any.proto";
message Status {
int32 code = 1;
string message = 2;
repeated google.protobuf.Any details = 3;
}