pub mod install;
use crate::{dto::error::Error, ops::runtime::memory::MemoryRegistryOps};
pub struct MemoryRuntimeApi;
impl MemoryRuntimeApi {
pub fn bootstrap_registry() -> Result<(), Error> {
MemoryRegistryOps::bootstrap_registry().map_err(Error::from)?;
Ok(())
}
}