aboutsummaryrefslogtreecommitdiff
path: root/python/google/protobuf/internal/factory_test1.proto
diff options
context:
space:
mode:
Diffstat (limited to 'python/google/protobuf/internal/factory_test1.proto')
-rw-r--r--python/google/protobuf/internal/factory_test1.proto14
1 files changed, 14 insertions, 0 deletions
diff --git a/python/google/protobuf/internal/factory_test1.proto b/python/google/protobuf/internal/factory_test1.proto
index d2fbbeec..f5bd0383 100644
--- a/python/google/protobuf/internal/factory_test1.proto
+++ b/python/google/protobuf/internal/factory_test1.proto
@@ -56,3 +56,17 @@ message Factory1Message {
extensions 1000 to max;
}
+
+message Factory1MethodRequest {
+ optional string argument = 1;
+}
+
+message Factory1MethodResponse {
+ optional string result = 1;
+}
+
+service Factory1Service {
+ // Dummy method for this dummy service.
+ rpc Factory1Method(Factory1MethodRequest) returns (Factory1MethodResponse) {
+ }
+}