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