Initial version
This commit is contained in:
15
Protobufs/google/protobuf/any.proto
Normal file
15
Protobufs/google/protobuf/any.proto
Normal file
@@ -0,0 +1,15 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package google.protobuf;
|
||||
|
||||
option go_package = "google.golang.org/protobuf/types/known/anypb";
|
||||
option java_package = "com.google.protobuf";
|
||||
option java_outer_classname = "AnyProto";
|
||||
option java_multiple_files = true;
|
||||
option objc_class_prefix = "GPB";
|
||||
option csharp_namespace = "Google.Protobuf.WellKnownTypes";
|
||||
|
||||
message Any {
|
||||
optional string type_url = 1;
|
||||
optional bytes value = 2;
|
||||
}
|
||||
Reference in New Issue
Block a user