chore: Add blocknig server example (#277)

Co-authored-by: Lucio Franco <[email protected]>
This commit is contained in:
Govardhan G D
2020-03-06 11:30:10 -05:00
committed by GitHub
co-authored by Lucio Franco
parent 7dfa2a277b
commit 9e7d35a2d3
3 changed files with 42 additions and 2 deletions
+1 -1
View File
@@ -199,7 +199,7 @@ Create a `build.rs` file at the root of your crate:
```rust
fn main() {
tonic_build::prost::compile_protos("proto/route_guide.proto")
tonic_build::compile_protos("proto/route_guide.proto")
.unwrap_or_else(|e| panic!("Failed to compile protos {:?}", e));
}
```