python-betterproto/tests/inputs/repeated_duration_timestamp/repeated_duration_timestamp.proto
2022-03-03 13:34:53 +00:00

13 lines
263 B
Protocol Buffer

syntax = "proto3";
package repeated_duration_timestamp;
import "google/protobuf/duration.proto";
import "google/protobuf/timestamp.proto";
message Test {
repeated google.protobuf.Timestamp times = 1;
repeated google.protobuf.Duration durations = 2;
}