about summary refs log tree commit diff
path: root/tools/gotest/test.proto
blob: 76af63072be3bb256d208ef7812891cafed91dad (plain) (blame)
1
2
3
4
5
6
7
8
9
syntax = "proto3";
package someproto;

import "google/protobuf/timestamp.proto";

message Person {
  string name = 1;
  google.protobuf.Timestamp last_updated = 2;
}