aboutsummaryrefslogtreecommitdiff
path: root/examples/py_proto_library/example.com/proto/pricetag.proto
diff options
context:
space:
mode:
Diffstat (limited to 'examples/py_proto_library/example.com/proto/pricetag.proto')
-rw-r--r--examples/py_proto_library/example.com/proto/pricetag.proto11
1 files changed, 11 insertions, 0 deletions
diff --git a/examples/py_proto_library/example.com/proto/pricetag.proto b/examples/py_proto_library/example.com/proto/pricetag.proto
new file mode 100644
index 0000000..3fa68de
--- /dev/null
+++ b/examples/py_proto_library/example.com/proto/pricetag.proto
@@ -0,0 +1,11 @@
+syntax = "proto3";
+
+import "google/protobuf/any.proto";
+
+package rules_python;
+
+message PriceTag {
+ string name = 2;
+ double cost = 1;
+ google.protobuf.Any metadata = 3;
+}