more readme updates

This commit is contained in:
Lucio Franco
2019-10-01 16:40:42 -04:00
parent e53fa13457
commit 3c1b2e4bb5
3 changed files with 68 additions and 16 deletions
+22
View File
@@ -48,6 +48,28 @@ $ rustup component add rustfmt --toolchain beta
$ cargo +beta build
```
#### Protobuf
```protobuf
package helloworld;
// The greeting service definition.
service Greeter {
// Sends a greeting
rpc SayHello (HelloRequest) returns (HelloReply) {}
}
// The request message containing the user's name.
message HelloRequest {
string name = 1;
}
// The response message containing the greetings
message HelloReply {
string message = 1;
}
```
#### Client
```rust