Skip to main content

workflow_http/
result.rs

1/// Convenience result type returning this crate's [`Error`](crate::error::Error) on failure.
2pub type Result<T> = std::result::Result<T, crate::error::Error>;