fn main() -> Result<(), Box> { tonic_build::configure() .build_server(false) .build_client(true) .compile_well_known_types(true) .compile(&["oomagent.proto"], &["proto"])?; Ok(()) }