init project structure

This commit is contained in:
GW_MC
2026-03-06 13:28:14 +00:00
parent 4ce28b9005
commit 9c55a11712
34 changed files with 7035 additions and 22 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(())
}