Files
AobaV2/AobaClient/build.rs
Amatsugu e223612a08 Auth rpc
Search Bar
Search requests
2025-05-03 22:21:11 -04:00

12 lines
274 B
Rust

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