Files
NxMesh-old-2/crates/nxmesh-proto/build.rs
2026-03-06 13:28:14 +00:00

10 lines
201 B
Rust

use std::io::Result;
fn main() -> Result<()> {
tonic_build::configure()
.build_server(true)
.build_client(true)
.compile(&["proto/agent.proto"], &["proto"])?;
Ok(())
}