Files
Containarr/agent/build.rs

7 lines
202 B
Rust

fn main() -> Result<(), Box<dyn std::error::Error>> {
tonic_build::configure()
.build_server(false)
.compile_protos(&["../proto/agent/v1/agent.proto"], &["../proto"])?;
Ok(())
}