mirror of
https://github.com/protocolbuffers/protobuf-go.git
synced 2025-01-01 11:58:21 +00:00
10 lines
142 B
Protocol Buffer
10 lines
142 B
Protocol Buffer
|
syntax = "proto2";
|
||
|
|
||
|
package oneoftest;
|
||
|
|
||
|
message Foo {
|
||
|
oneof bar { // must be generated as Bar field in Foo struct
|
||
|
string get_bar = 1;
|
||
|
}
|
||
|
}
|