mirror of
https://github.com/google/pebble.git
synced 2025-03-20 02:51:21 +00:00
18 lines
192 B
Protocol Buffer
18 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;
|
|
}
|
|
|
|
|