about summary refs log tree commit diff
path: root/tools/gotest/test.proto
diff options
context:
space:
mode:
Diffstat (limited to 'tools/gotest/test.proto')
-rw-r--r--tools/gotest/test.proto9
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/gotest/test.proto b/tools/gotest/test.proto
new file mode 100644
index 0000000000..76af63072b
--- /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;
+}