useanyhow::Result;usewasmtime_wasi::WasiCtxBuilder;usewasmtime_wasi::p1::WasiP1Ctx;pubfnbuild()->Result<WasiP1Ctx>{// Note: stdout/stderr would need to access context from StoreData
// For now, inherit from parent process
let ctx =WasiCtxBuilder::new().inherit_stdout().inherit_stderr().inherit_env().build_p1();Ok(ctx)}// TODO: Custom stdout/stderr that access context from StoreData
// This requires passing Store through the OutputStream trait somehow
// For now, just inherit from parent process