0g-storage-node/node/rpc/build.rs
2025-07-03 19:43:09 +08:00

6 lines
163 B
Rust

fn main() -> Result<(), Box<dyn std::error::Error>> {
// Compile proto/my_service.proto
tonic_build::compile_protos("proto/zgs_grpc.proto")?;
Ok(())
}