1 2 3 4 5 6
//! Build script that compiles the gRPC protobuf definitions via `tonic-build`. fn main() -> Result<(), Box<dyn std::error::Error>> { tonic_build::compile_protos("proto/pcx.proto")?; Ok(()) }