Minor fix in README

This commit is contained in:
Alec Thilenius 2023-04-29 10:21:06 -07:00
parent 7e1d7b6c18
commit d92f5529c5

View file

@ -66,18 +66,14 @@ Start by creating the obligatory 'hello world' proto service definition.
```protobuf ```protobuf
syntax = "proto3"; syntax = "proto3";
package hello_world; package hello;
message HelloRequest { message HelloRequest { string name = 1; }
string name = 1;
}
message HelloResponse { message HelloResponse { string message = 1; }
string message = 1;
}
service HelloWorldService { service HelloWorldService {
rpc SayHello(HelloRequest) returns (HelloResponse) {} rpc SayHello(HelloRequest) returns (HelloResponse) {}
} }
``` ```