1/// Result type used throughout `workflow-nw`, with [`crate::error::Error`] as the error type. 2pub type Result<T> = std::result::Result<T, crate::error::Error>;