dcache/build.rs
Aravinth Manivannan 70ef43b720
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
feat: use protobuf for RPC
2023-12-26 14:58:55 +05:30

11 lines
333 B
Rust

fn main() -> Result<(), Box<dyn std::error::Error>> {
// tonic_build::configure()
// .out_dir("protoout")
// .compile(
// &["proto/dcache/dcache.proto"],
// &["proto/dcache"],
// )?;
tonic_build::compile_protos("proto/dcache/dcache.proto")?;
Ok(())
}