mirror of
https://github.com/protobufjs/protobuf.js.git
synced 2025-12-08 20:58:55 +00:00
15 lines
189 B
Protocol Buffer
15 lines
189 B
Protocol Buffer
option (foo) = "bar";
|
|
|
|
package com;
|
|
|
|
message Outer {
|
|
optional Inner inner = 1;
|
|
optional Other other = 2;
|
|
|
|
message Inner {
|
|
}
|
|
}
|
|
|
|
message Other {
|
|
required uint32 var = 1;
|
|
} |