summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorNaz <ndpm13@ch-naseem.com>2025-07-27 14:42:21 +0100
committerNaz <ndpm13@ch-naseem.com>2025-07-27 14:42:21 +0100
commitccf603c81bd11864aabae5e98c9888854fe885cb (patch)
tree2e7d064f97e2e6a4e6d0435bdcceee786faf8d26 /src/lib.rs
parent85fb9fcc50d16f8b8147c117521b836ab750cd98 (diff)
✨feat: add AppImage download with progress tracking
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 4604c31..5fa0a6b 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,7 +1,9 @@
mod args;
+mod tui;
mod types;
pub use crate::args::*;
+pub use crate::tui::*;
pub use crate::types::*;
use std::path::PathBuf;