aboutsummaryrefslogtreecommitdiff
path: root/examples/py_proto_library/pricetag.proto
diff options
context:
space:
mode:
Diffstat (limited to 'examples/py_proto_library/pricetag.proto')
-rw-r--r--examples/py_proto_library/pricetag.proto8
1 files changed, 8 insertions, 0 deletions
diff --git a/examples/py_proto_library/pricetag.proto b/examples/py_proto_library/pricetag.proto
new file mode 100644
index 0000000..c952248
--- /dev/null
+++ b/examples/py_proto_library/pricetag.proto
@@ -0,0 +1,8 @@
+syntax = "proto3";
+
+package rules_python;
+
+message PriceTag {
+ string name = 2;
+ double cost = 1;
+}