diff options
| author | Naz <ndpm13@ch-naseem.com> | 2025-07-29 13:46:43 +0100 |
|---|---|---|
| committer | Naz <ndpm13@ch-naseem.com> | 2025-07-29 13:46:43 +0100 |
| commit | bd8adb9f0193f1482ca866b06cf133ff68fd9a8e (patch) | |
| tree | 8d29230c9821e0512c207e2415e682a997090d2e /src/lib.rs | |
| parent | f419a08d2861d76dce3d2a8206d6f1eb24bf1f2e (diff) | |
🔧refactor: remove types.rs
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 29 |
1 files changed, 12 insertions, 17 deletions
@@ -1,22 +1,17 @@ +mod appimage; mod args; +mod downloader; +mod index; +mod manager; +mod paths; +mod symlink; mod tui; -mod types; +pub use crate::appimage::*; pub use crate::args::*; +pub use crate::downloader::*; +pub use crate::index::*; +pub use crate::manager::*; +pub use crate::paths::*; +pub use crate::symlink::*; pub use crate::tui::*; -pub use crate::types::*; - -use std::path::PathBuf; - -pub fn zap_rs_home() -> PathBuf { - let home = std::env::var("HOME").expect("HOME not set"); - PathBuf::from(home).join(".local/share/zap-rs") -} - -pub fn index_dir() -> PathBuf { - zap_rs_home().join("index") -} - -pub fn appimages_dir() -> PathBuf { - zap_rs_home().join("appimages") -} |
