summaryrefslogtreecommitdiffstats
path: root/src/result.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/result.rs')
-rw-r--r--src/result.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/result.rs b/src/result.rs
new file mode 100644
index 0000000..8207680
--- /dev/null
+++ b/src/result.rs
@@ -0,0 +1,3 @@
+use crate::error::Error;
+
+pub type Result<T> = std::result::Result<T, Error>;