blob: afbb6035df063bcbad8aaf0a09f638dd9cc79c58 [file] [log] [blame]
Muxi Yan035f7e42017-06-12 09:35:31 -07001// Copyright 2017 gRPC authors.
Muxi Yan6a8763e2017-06-06 11:13:09 -07002//
Muxi Yan035f7e42017-06-12 09:35:31 -07003// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
Muxi Yan6a8763e2017-06-06 11:13:09 -07006//
Muxi Yan035f7e42017-06-12 09:35:31 -07007// http://www.apache.org/licenses/LICENSE-2.0
Muxi Yan6a8763e2017-06-06 11:13:09 -07008//
Muxi Yan035f7e42017-06-12 09:35:31 -07009// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
Muxi Yan6a8763e2017-06-06 11:13:09 -070014syntax = "proto3";
15
Muxi Yan6a8763e2017-06-06 11:13:09 -070016package grpc.testing;
17
18option objc_class_prefix = "RMT";
19
Muxi Yan7352bae2017-06-08 09:58:06 -070020import "imported-with-dash.proto";
21
22message TestMessage {
23 int32 dummy = 1;
24}
25
Muxi Yancc620df2017-06-07 10:00:39 -070026service DummyService {
Muxi Yan6a8763e2017-06-06 11:13:09 -070027}