first commit
This commit is contained in:
9
proto/google/protobuf/any.proto
Normal file
9
proto/google/protobuf/any.proto
Normal file
@@ -0,0 +1,9 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package google.protobuf;
|
||||
|
||||
message Any {
|
||||
string type_url = 1;
|
||||
bytes value = 2;
|
||||
}
|
||||
|
||||
12
proto/google/rpc/status.proto
Normal file
12
proto/google/rpc/status.proto
Normal 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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user