pub trait UpdaterProxyInterface: Send + Sync {
type UpdateResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn update(
&self,
manifest_url: &str,
signature: &[u8],
) -> Self::UpdateResponseFut;
}