summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorNaz <ndpm13@ch-naseem.com>2025-07-31 14:50:21 +0100
committerNaz <ndpm13@ch-naseem.com>2025-07-31 14:50:21 +0100
commit61b6008db55f8aa6d9cc8d8998c3e28916e144cc (patch)
tree64303da75bfb86162873377eb520b2513c72d7df /src/lib.rs
parent6b3f5d37fbce2e880a454e66d8fbd78269f1c867 (diff)
✨feat: add an error module
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index c0db44a..3e20bde 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -6,6 +6,7 @@ mod manager;
mod paths;
mod symlink;
mod tui;
+mod error;
pub use crate::appimage::*;
pub use crate::args::*;
@@ -15,3 +16,4 @@ pub use crate::manager::*;
pub use crate::paths::*;
pub use crate::symlink::*;
pub use crate::tui::*;
+pub use crate::error::*;