-
Notifications
You must be signed in to change notification settings - Fork 64
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
28 changed files
with
4,477 additions
and
536 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
syntax = "proto3"; | ||
|
||
package com.gojek.test.proto; | ||
|
||
option java_package = "com.gojek.test.proto"; | ||
option java_outer_classname = "Example"; | ||
|
||
message Photo { | ||
int32 id = 1; | ||
string path = 2; | ||
optional bytes image = 6; | ||
|
||
message Label { | ||
string item = 1; | ||
bool exists = 2; | ||
} | ||
|
||
message Attr { | ||
string key = 1; | ||
optional string val = 2; | ||
} | ||
|
||
message Tag { | ||
int32 person_id = 1; | ||
optional int32 y_coord = 3; | ||
optional int32 width = 4; | ||
optional int32 height = 5; | ||
} | ||
} |
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,12 @@ | ||
syntax = "proto3"; | ||
|
||
package com.ziggurat.proto; | ||
|
||
option java_package = "com.ziggurat.proto"; | ||
option java_outer_classname = "MessagePayloadProto"; | ||
|
||
message MessagePayload { | ||
bytes message = 1; | ||
string topic_entity = 2; | ||
int32 retry_count = 3; | ||
} |
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 |
---|---|---|
|
@@ -13,4 +13,4 @@ message Person { | |
string email = 3; | ||
string likes = 4; | ||
google.protobuf.Struct characters = 5; | ||
} | ||
} |
Oops, something went wrong.