Files
AobaV2/AobaClient/build.rs
2025-05-03 01:09:59 -04:00

8 lines
204 B
Rust

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