mirror of
https://github.com/protobufjs/protobuf.js.git
synced 2025-12-08 20:58:55 +00:00
9 lines
82 B
Protocol Buffer
9 lines
82 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
message A {
|
|
string whatever = 1;
|
|
}
|
|
|
|
message B {
|
|
A A = 1;
|
|
} |