Lenny-Campino Hartmann 2f076524d4 fixed vendor fetch
2018-08-07 21:24:46 +02:00

12 lines
154 B
Protocol Buffer

syntax = "proto3";
package testdata;
message Person {
string name = 1;
int32 age = 2;
string address = 3;
map<string, Person> children = 10;
}