pub trait BootstrapProxyInterface: Send + Sync {
type ImportWeaveConfigResponseFut: Future<Output = Result<BootstrapImportWeaveConfigResult, Error>> + Send;
// Required method
fn import_weave_config(
&self,
config_json: Buffer,
) -> Self::ImportWeaveConfigResponseFut;
}