summaryrefslogtreecommitdiff
path: root/src/result.rs
diff options
context:
space:
mode:
authorOwen Jacobson <owen@grimoire.ca>2024-07-23 19:21:03 -0400
committerOwen Jacobson <owen@grimoire.ca>2024-07-23 19:31:41 -0400
commit4f568db968cced94eb282d1353e43625ee8811bb (patch)
treefc823896fa00c4e19ef5c2a2bb1b703314bba5d2 /src/result.rs
parent5429d2ab901380a92535e31c8cce6646e9b11c4f (diff)
Retire the `result` module.
It didn't add much to have our own Result definition, over using `anyhow::Result` directly.
Diffstat (limited to 'src/result.rs')
-rw-r--r--src/result.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/result.rs b/src/result.rs
deleted file mode 100644
index 7c607c5..0000000
--- a/src/result.rs
+++ /dev/null
@@ -1,4 +0,0 @@
-use anyhow;
-
-pub type Error = anyhow::Error;
-pub type Result<T> = std::result::Result<T, Error>;