Created
May 10, 2016 01:52
-
-
Save yugui/d436e77e8ab1d112827176c78e9ac3ea to your computer and use it in GitHub Desktop.
This file contains hidden or 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
syntax = "proto3"; | |
package example; | |
message Example { | |
oneof oneof_field { | |
string string_value = 1; | |
int32 int32_value = 2; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment