1
0
Fork 0
telegraf/plugins/parsers/xpath/testcases/protos/person.proto

14 lines
207 B
Protocol Buffer
Raw Normal View History

syntax = "proto3";
package importtest;
import "phonenumber.proto";
message Person {
optional string name = 1;
optional int32 id = 2;
optional string email = 3;
repeated PhoneNumber phones = 4;
}