mirror of
https://github.com/google/pebble.git
synced 2025-03-22 19:52:19 +00:00
12 lines
163 B
Protocol Buffer
12 lines
163 B
Protocol Buffer
|
syntax = "proto2";
|
||
|
|
||
|
message MainMessage {
|
||
|
oneof oneof1 {
|
||
|
uint32 oneof1_uint32 = 1;
|
||
|
}
|
||
|
oneof oneof2 {
|
||
|
uint32 oneof2_uint32 = 2;
|
||
|
}
|
||
|
}
|
||
|
|