├── .gitignore ├── BUILD ├── LICENSE ├── README.md ├── WORKSPACE └── src ├── BUILD ├── address.proto ├── person.proto └── zip_code.proto /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrushko/proto_library/HEAD/.gitignore -------------------------------------------------------------------------------- /BUILD: -------------------------------------------------------------------------------- 1 | # An intentionally empty BUILD file. 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrushko/proto_library/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrushko/proto_library/HEAD/README.md -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrushko/proto_library/HEAD/WORKSPACE -------------------------------------------------------------------------------- /src/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrushko/proto_library/HEAD/src/BUILD -------------------------------------------------------------------------------- /src/address.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrushko/proto_library/HEAD/src/address.proto -------------------------------------------------------------------------------- /src/person.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrushko/proto_library/HEAD/src/person.proto -------------------------------------------------------------------------------- /src/zip_code.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgrushko/proto_library/HEAD/src/zip_code.proto --------------------------------------------------------------------------------