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

11 lines
129 B
Protocol Buffer
Raw Normal View History

syntax = "proto3";
package mapmessage;
message Test {
map<string, Nested> items = 1;
}
message Nested {
int32 count = 1;
}