0g-storage-node/node/rpc/build.rs

8 lines
259 B
Rust
Raw Normal View History

fn main() -> Result<(), Box<dyn std::error::Error>> {
// Compile proto/my_service.proto
2025-07-01 11:23:55 +00:00
tonic_build::configure()
.file_descriptor_set_path("proto/zgs_grpc_descriptor.bin")
.compile(&["proto/zgs_grpc.proto"], &["proto"])?;
Ok(())
}