burrow/burrow/build.rs
2026-03-18 02:45:55 -07:00

4 lines
132 B
Rust

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