11 lines
225 B
Protocol Buffer
11 lines
225 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
import "google/protobuf/duration.proto";
|
|
import "google/protobuf/timestamp.proto";
|
|
|
|
|
|
message Test {
|
|
repeated google.protobuf.Timestamp times = 1;
|
|
repeated google.protobuf.Duration durations = 2;
|
|
}
|