workflow_wasm/
result.rs

1//! [`Result`] type used by the `workflow_wasm` crate.
2
3pub type Result<T> = std::result::Result<T, crate::error::Error>;