-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
21 changed files
with
2,281 additions
and
142 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
syntax = "proto3"; | ||
|
||
package google.protobuf; | ||
|
||
option go_package = "google.golang.org/protobuf/types/known/timestamppb"; | ||
|
||
message Timestamp { | ||
optional int64 seconds = 1 [json_name="seconds"]; | ||
optional int32 nanos = 2 [json_name="nanos"]; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
syntax = "proto3"; | ||
|
||
package google.protobuf; | ||
|
||
option go_package = "google.golang.org/protobuf/types/known/wrapperspb"; | ||
|
||
message DoubleValue { | ||
optional double value = 1 [json_name="value"]; | ||
} | ||
|
||
message FloatValue { | ||
optional float value = 1 [json_name="value"]; | ||
} | ||
|
||
message Int64Value { | ||
optional int64 value = 1 [json_name="value"]; | ||
} | ||
|
||
message UInt64Value { | ||
optional uint64 value = 1 [json_name="value"]; | ||
} | ||
|
||
message Int32Value { | ||
optional int32 value = 1 [json_name="value"]; | ||
} | ||
|
||
message UInt32Value { | ||
optional uint32 value = 1 [json_name="value"]; | ||
} | ||
|
||
message BoolValue { | ||
optional bool value = 1 [json_name="value"]; | ||
} | ||
|
||
message StringValue { | ||
optional string value = 1 [json_name="value"]; | ||
} | ||
|
||
message BytesValue { | ||
optional bytes value = 1 [json_name="value"]; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,4 @@ message Status { | |
optional int32 code = 1 [json_name="code"]; | ||
optional string message = 2 [json_name="message"]; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.