summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2020-03-20 09:27:36 +0200
committerLars Wirzenius <liw@liw.fi>2020-03-20 09:30:39 +0200
commit5e5891771efd0530b1e648c1acb6d673b032e432 (patch)
tree889930448ab8764dc8f37840da4a07dd750ac3e1 /src/lib.rs
parentdcbcbd9457d4bd4d21bcf8dbcc9e416fff463d92 (diff)
downloadroadmap-5e5891771efd0530b1e648c1acb6d673b032e432.tar.gz
Change: use anyhow and thiserror for error handling
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index d3f672b..63497bb 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -31,6 +31,9 @@
//! # }
//! ```
+mod err;
+pub use err::RoadmapError;
+
mod status;
pub use status::Status;