init project structure
This commit is contained in:
9
crates/nxmesh-proto/build.rs
Normal file
9
crates/nxmesh-proto/build.rs
Normal file
@@ -0,0 +1,9 @@
|
||||
use std::io::Result;
|
||||
|
||||
fn main() -> Result<()> {
|
||||
tonic_build::configure()
|
||||
.build_server(true)
|
||||
.build_client(true)
|
||||
.compile(&["proto/agent.proto"], &["proto"])?;
|
||||
Ok(())
|
||||
}
|
||||
Reference in New Issue
Block a user