aboutsummaryrefslogtreecommitdiffhomepage
path: root/base_workspace/examples/proto/test.proto
diff options
context:
space:
mode:
Diffstat (limited to 'base_workspace/examples/proto/test.proto')
-rw-r--r--base_workspace/examples/proto/test.proto10
1 files changed, 10 insertions, 0 deletions
diff --git a/base_workspace/examples/proto/test.proto b/base_workspace/examples/proto/test.proto
new file mode 100644
index 0000000000..16a6dc335a
--- /dev/null
+++ b/base_workspace/examples/proto/test.proto
@@ -0,0 +1,10 @@
+syntax = "proto2";
+
+package test;
+
+option java_package = "com.google.test";
+
+message KeyVal {
+ optional string key = 1;
+ optional string val = 2;
+}