diff options
| author | Naz <ndpm13@ch-naseem.com> | 2025-07-28 10:22:43 +0100 |
|---|---|---|
| committer | Naz <ndpm13@ch-naseem.com> | 2025-07-28 10:22:43 +0100 |
| commit | ae0c7e1ce7d21e1737f7fc2a2838f4b1f9cc8d1d (patch) | |
| tree | 20276eab9c45d1b229752cb9496b6988bffeb8ff /src | |
| parent | 91813e3f6a9b93b92fb4b99d2e9512d41726c9d9 (diff) | |
🔧refactor: rename ndpm references to zap-rs
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib.rs | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -8,15 +8,15 @@ pub use crate::types::*; use std::path::PathBuf; -pub fn ndpm_ai_home() -> PathBuf { +pub fn zap_rs_home() -> PathBuf { let home = std::env::var("HOME").expect("HOME not set"); - PathBuf::from(home).join(".local/share/ndpm-appimage") + PathBuf::from(home).join(".local/share/zap-rs") } pub fn index_dir() -> PathBuf { - ndpm_ai_home().join("index") + zap_rs_home().join("index") } pub fn appimages_dir() -> PathBuf { - ndpm_ai_home().join("appimages") + zap_rs_home().join("appimages") } |
