about summary refs log tree commit diff
path: root/third_party/bazel/rules_haskell/tests/haskell_proto_library/person.proto
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/bazel/rules_haskell/tests/haskell_proto_library/person.proto')
-rw-r--r--third_party/bazel/rules_haskell/tests/haskell_proto_library/person.proto16
1 files changed, 0 insertions, 16 deletions
diff --git a/third_party/bazel/rules_haskell/tests/haskell_proto_library/person.proto b/third_party/bazel/rules_haskell/tests/haskell_proto_library/person.proto
deleted file mode 100644
index 95bf3524f8..0000000000
--- a/third_party/bazel/rules_haskell/tests/haskell_proto_library/person.proto
+++ /dev/null
@@ -1,16 +0,0 @@
-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/address.proto";
-
-import "google/protobuf/timestamp.proto";
-
-message Person {
-  string name = 1;
-  int32 id = 2;
-  string email = 3;
-  Address address = 4;
-  google.protobuf.Timestamp timestamp = 5;
-}