chore: Add blocknig server example (#277)

Co-authored-by: Lucio Franco <luciofranco14@gmail.com>
This commit is contained in:
Govardhan G D
2020-03-06 22:00:10 +05:30
committed by GitHub
parent 7dfa2a277b
commit 9e7d35a2d3
3 changed files with 42 additions and 2 deletions
+1 -1
View File
@@ -129,7 +129,7 @@ At the root of your crate, create a `build.rs` file and add the following code:
```rust
fn main() -> Result<(), Box<dyn std::error::Error>> {
tonic_build::prost::compile_protos("proto/helloworld.proto")?;
tonic_build::compile_protos("proto/helloworld.proto")?;
Ok(())
}
```