about summary refs log tree commit diff
path: root/third_party/bazel/rules_haskell/tests/haskell_proto_library/address.proto
blob: d81642d8bcd4343361b8260d6d1cdd02318df203 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
syntax = "proto3";

package demo; // Required to generate valid code.

// Always import protos with a full path relative to the WORKSPACE file.
import "tests/haskell_proto_library/zip_code.proto";

message Address {
  string city = 1;
  ZipCode zip_code = 2;
}