aboutsummaryrefslogtreecommitdiff
path: root/examples/py_proto_library/pricetag.proto
blob: c952248846041131e6dca39e4bef1fa9c3aa7bbe (plain)
1
2
3
4
5
6
7
8
syntax = "proto3";

package rules_python;

message PriceTag {
  string name = 2;
  double cost = 1;
}