1
0
Fork 0
python-aristaproto/tests/inputs/repeatedmessage/repeatedmessage.proto

11 lines
132 B
Protocol Buffer
Raw Normal View History

syntax = "proto3";
package repeatedmessage;
message Test {
repeated Sub greetings = 1;
}
message Sub {
string greeting = 1;
}