diff options
Diffstat (limited to 'dichroism/src/result.rs')
-rw-r--r-- | dichroism/src/result.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dichroism/src/result.rs b/dichroism/src/result.rs index 708451d..88e89cd 100644 --- a/dichroism/src/result.rs +++ b/dichroism/src/result.rs @@ -1 +1 @@ -pub type Result<T> = std::result::Result<T, Box<dyn std::error::Error>>; +pub type Result<T> = anyhow::Result<T>; |