feat: Add core models and protocol definitions for NxMesh

This commit is contained in:
GW_MC
2026-03-03 04:14:36 +00:00
parent 43b2e44d95
commit 2e9ad4fc21
13 changed files with 1018 additions and 0 deletions

View 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(())
}