pub trait ComponentOtaHealthCheckProxyInterface: Send + Sync {
type GetHealthStatusResponseFut: Future<Output = Result<HealthStatus, Error>> + Send;
// Required method
fn get_health_status(&self) -> Self::GetHealthStatusResponseFut;
}
pub trait ComponentOtaHealthCheckProxyInterface: Send + Sync {
type GetHealthStatusResponseFut: Future<Output = Result<HealthStatus, Error>> + Send;
// Required method
fn get_health_status(&self) -> Self::GetHealthStatusResponseFut;
}