11 lines
No EOL
132 B
Protocol Buffer
11 lines
No EOL
132 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package repeatedmessage;
|
|
|
|
message Test {
|
|
repeated Sub greetings = 1;
|
|
}
|
|
|
|
message Sub {
|
|
string greeting = 1;
|
|
} |