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