orb8-proto 0.0.4

gRPC protocol definitions for orb8
Documentation
1
2
3
4
5
6
7
fn main() -> Result<(), Box<dyn std::error::Error>> {
    tonic_build::configure()
        .build_server(true)
        .build_client(true)
        .compile_protos(&["proto/orb8.proto"], &["proto"])?;
    Ok(())
}