1
0
Fork 0
telegraf/plugins/parsers/xpath/testcases/protos/person.proto
Daniel Baumann 4978089aab
Adding upstream version 1.34.4.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-05-24 07:26:29 +02:00

13 lines
207 B
Protocol Buffer

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;
}