aboutsummaryrefslogtreecommitdiff
path: root/examples/py_proto_library/example.com/another_proto/message.proto
diff options
context:
space:
mode:
Diffstat (limited to 'examples/py_proto_library/example.com/another_proto/message.proto')
-rw-r--r--examples/py_proto_library/example.com/another_proto/message.proto10
1 files changed, 10 insertions, 0 deletions
diff --git a/examples/py_proto_library/example.com/another_proto/message.proto b/examples/py_proto_library/example.com/another_proto/message.proto
new file mode 100644
index 0000000..6e7dcc5
--- /dev/null
+++ b/examples/py_proto_library/example.com/another_proto/message.proto
@@ -0,0 +1,10 @@
+syntax = "proto3";
+
+package rules_python;
+
+import "proto/pricetag.proto";
+
+message TestMessage {
+ uint32 index = 1;
+ PriceTag pricetag = 2;
+}