first commit

This commit is contained in:
Дмитрий
2026-03-24 14:18:09 +03:00
commit 01821526d2
10 changed files with 923 additions and 0 deletions

View File

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