Skip to main content

workflow_nw/
result.rs

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>;