pub trait CheckerProxyInterface: Send + Sync {
type SentinelFileContentsResponseFut: Future<Output = Result<String, Error>> + Send;
// Required method
fn sentinel_file_contents(&self) -> Self::SentinelFileContentsResponseFut;
}
pub trait CheckerProxyInterface: Send + Sync {
type SentinelFileContentsResponseFut: Future<Output = Result<String, Error>> + Send;
// Required method
fn sentinel_file_contents(&self) -> Self::SentinelFileContentsResponseFut;
}