mirror of
https://github.com/google/pebble.git
synced 2025-03-20 19:01:21 +00:00
14 lines
186 B
Protocol Buffer
14 lines
186 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
import "submessage.proto";
|
||
|
|
||
|
message MyMessage
|
||
|
{
|
||
|
oneof foo
|
||
|
{
|
||
|
SubMessage1 msg1 = 1;
|
||
|
SubMessage2 msg2 = 2;
|
||
|
SubMessage3 msg3 = 3;
|
||
|
}
|
||
|
}
|