aboutsummaryrefslogtreecommitdiffstats
path: root/src/prelude.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2020-04-05 02:17:25 -0400
committerJesse Luehrs <doy@tozt.net>2020-04-05 02:17:25 -0400
commitcd894c27e0b0d5746b95b9c2933da3ba6e9a3f5b (patch)
tree94de4da0e8ac1cea7a855f8fb1d16d6f320e7e72 /src/prelude.rs
parent070315ce5f80e82fcb5f39c15cd7bbf1682fdf8b (diff)
downloadrbw-cd894c27e0b0d5746b95b9c2933da3ba6e9a3f5b.tar.gz
rbw-cd894c27e0b0d5746b95b9c2933da3ba6e9a3f5b.zip
basic implementation of the cryptographic stuff
Diffstat (limited to 'src/prelude.rs')
-rw-r--r--src/prelude.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/prelude.rs b/src/prelude.rs
new file mode 100644
index 0000000..af8bbd7
--- /dev/null
+++ b/src/prelude.rs
@@ -0,0 +1,2 @@
+pub use crate::error::{Error, Result};
+pub use snafu::{OptionExt as _, ResultExt as _};