diff options
Diffstat (limited to 'tools/gotest/test.proto')
-rw-r--r-- | tools/gotest/test.proto | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/gotest/test.proto b/tools/gotest/test.proto new file mode 100644 index 000000000000..76af63072be3 --- /dev/null +++ b/tools/gotest/test.proto @@ -0,0 +1,9 @@ +syntax = "proto3"; +package someproto; + +import "google/protobuf/timestamp.proto"; + +message Person { + string name = 1; + google.protobuf.Timestamp last_updated = 2; +} |