8 lines
148 B
Protocol Buffer
8 lines
148 B
Protocol Buffer
|
// Bar.proto
|
||
|
import "Foo.proto";
|
||
|
|
||
|
// really extend Bar but that produces an empty constructor.
|
||
|
extend Foo {
|
||
|
required string buzz = 2;
|
||
|
}
|