Add support for map value message types

This commit is contained in:
Daniel G. Taylor
2019-10-10 23:09:09 -07:00
parent 32bc8d50fb
commit 7dbaee0cfb
4 changed files with 61 additions and 9 deletions

View File

@@ -0,0 +1,10 @@
{
"items": {
"foo": {
"count": 1
},
"bar": {
"count": 2
}
}
}

View File

@@ -0,0 +1,9 @@
syntax = "proto3";
message Test {
map<string, Nested> items = 1;
}
message Nested {
int32 count = 1;
}