aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/proto
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2018-05-31 08:44:58 +0200
committerGravatar Jan Tattermusch <jtattermusch@google.com>2018-05-31 17:19:47 +0200
commit57139d1eefc31eebefb0a2af7ffc932ba8ded349 (patch)
treecdd53c37461d9474df82e466d947801fcbb6c9b5 /src/proto
parent614331a50682c74fa8c02dcea674ca2ef5746225 (diff)
fix C# codegen for empty service
Diffstat (limited to 'src/proto')
-rw-r--r--src/proto/grpc/testing/empty_service.proto23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/proto/grpc/testing/empty_service.proto b/src/proto/grpc/testing/empty_service.proto
new file mode 100644
index 0000000000..157629b7a4
--- /dev/null
+++ b/src/proto/grpc/testing/empty_service.proto
@@ -0,0 +1,23 @@
+
+// Copyright 2018 gRPC authors.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+syntax = "proto3";
+
+package grpc.testing;
+
+// A service that has zero methods.
+// See https://github.com/grpc/grpc/issues/15574
+service EmptyService {
+}