mirror of
https://github.com/google/pebble.git
synced 2025-03-23 12:12:19 +00:00
11 lines
110 B
Protocol Buffer
11 lines
110 B
Protocol Buffer
|
syntax = "proto2";
|
||
|
|
||
|
message Foo {
|
||
|
extensions 1 to max;
|
||
|
}
|
||
|
|
||
|
extend Foo {
|
||
|
optional int32 foo_ext = 99999;
|
||
|
}
|
||
|
|