mirror of
https://github.com/google/pebble.git
synced 2025-03-19 18:41:21 +00:00
16 lines
288 B
Protocol Buffer
16 lines
288 B
Protocol Buffer
syntax = "proto2";
|
|
package a.b.c;
|
|
|
|
message TopLevel {
|
|
optional uint32 field = 1 [default = 0];
|
|
optional NestedTypeA foo = 2;
|
|
|
|
message NestedTypeA {
|
|
optional NestedTypeB bar = 1;
|
|
|
|
message NestedTypeB {
|
|
optional uint32 foobar = 1;
|
|
}
|
|
}
|
|
}
|
|
|