File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change 1
- // Copyright 2015 gRPC authors.
1
+ // Copyright 2015 The gRPC Authors
2
2
//
3
3
// Licensed under the Apache License, Version 2.0 (the "License");
4
4
// you may not use this file except in compliance with the License.
11
11
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
-
15
14
syntax = "proto3" ;
16
15
17
- package io.grpc.examples.helloworld ;
18
-
19
16
option java_multiple_files = true ;
17
+ option java_package = "io.grpc.examples.helloworld" ;
18
+ option java_outer_classname = "HelloWorldProto" ;
19
+ option objc_class_prefix = "HLW" ;
20
+
21
+ package helloworld ;
20
22
21
23
// The greeting service definition.
22
24
service Greeter {
23
25
// Sends a greeting
24
- rpc SayHello (HelloRequest ) returns (HelloReply );
26
+ rpc SayHello (HelloRequest ) returns (HelloReply ) {}
25
27
}
26
28
27
29
// The request message containing the user's name.
You can’t perform that action at this time.
0 commit comments