Support for repeated message fields

This commit is contained in:
Daniel G. Taylor
2019-10-09 20:46:16 -07:00
parent 1a488faf7a
commit ad7162a3ec
4 changed files with 77 additions and 34 deletions

View File

@@ -0,0 +1,10 @@
{
"greetings": [
{
"greeting": "hello"
},
{
"greeting": "hi"
}
]
}

View File

@@ -0,0 +1,9 @@
syntax = "proto3";
message Test {
repeated Sub greetings = 1;
}
message Sub {
string greeting = 1;
}