mirror of
https://github.com/google/pebble.git
synced 2025-03-20 19:01:21 +00:00
19 lines
192 B
Protocol Buffer
19 lines
192 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
import "other.proto";
|
||
|
|
||
|
message FirstOneof {}
|
||
|
|
||
|
message Bar {
|
||
|
oneof content {
|
||
|
FirstOneof first = 1;
|
||
|
SecondOneof second = 2;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
message Foo {
|
||
|
Bar bar = 1;
|
||
|
}
|
||
|
|
||
|
|