diff --git a/lib/cli/src/commands/run.rs b/lib/cli/src/commands/run.rs index f947b6d3da2..af460e2ee13 100644 --- a/lib/cli/src/commands/run.rs +++ b/lib/cli/src/commands/run.rs @@ -820,6 +820,22 @@ impl wasmer_wasix::Runtime for Monitorin progress: self.progress.clone(), }) } + + fn engine(&self) -> Option { + self.runtime.engine() + } + + fn new_store(&self) -> wasmer::Store { + self.runtime.new_store() + } + + fn http_client(&self) -> Option<&wasmer_wasix::http::DynHttpClient> { + self.runtime.http_client() + } + + fn tty(&self) -> Option<&(dyn wasmer_wasix::os::TtyBridge + Send + Sync)> { + self.runtime.tty() + } } #[derive(Debug)]