aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/proto
diff options
context:
space:
mode:
authorGravatar apolcyn <apolcyn@google.com>2018-10-18 17:07:52 -0700
committerGravatar GitHub <noreply@github.com>2018-10-18 17:07:52 -0700
commitda5d02fb4d41b5bd5996abc78ba025622d1bb25b (patch)
tree47adb55a3b5095c5f451844a684af9e12f24f8c7 /src/proto
parent0c4f412e13270f187251867526ca64b6eb102830 (diff)
parentf6e84176270df6012a74686a651a0a397e05ec51 (diff)
Merge pull request #16921 from apolcyn/move_package_options_test
Move ruby test's package_options.proto file to ruby-specific directory
Diffstat (limited to 'src/proto')
-rw-r--r--src/proto/grpc/testing/package_options.proto28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/proto/grpc/testing/package_options.proto b/src/proto/grpc/testing/package_options.proto
deleted file mode 100644
index e7ecf8c196..0000000000
--- a/src/proto/grpc/testing/package_options.proto
+++ /dev/null
@@ -1,28 +0,0 @@
-// 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;
-
-// For sanity checking package definitions
-option ruby_package = "Grpc.Testing.Package.Options";
-
-message TestRequest { }
-
-message TestResponse { }
-
-service TestService {
- rpc GetTest(TestRequest) returns (TestResponse) { }
-}