pub trait BootstrapProxyInterface: Send + Sync {
type CommitResponseFut: Future<Output = Result<BootstrapCommitResult, Error>> + Send;
// Required methods
fn add_identities(&self, identities: &[Identity]) -> Result<(), Error>;
fn commit(&self) -> Self::CommitResponseFut;
}