trim + fixes

This commit is contained in:
pivodevat
2025-09-18 12:21:01 +03:00
parent 35fafb1ca6
commit 28ba2135ec
10 changed files with 139 additions and 25 deletions

View File

@ -3,6 +3,7 @@ pub mod delete;
pub mod link;
pub mod disable;
pub mod enable;
pub mod trim;
use std::path::PathBuf;
@ -10,3 +11,8 @@ use std::path::PathBuf;
pub fn get_var_path() -> PathBuf {
PathBuf::from(env!("AEROPKG_HOME")).join("var")
}
pub fn get_etc_path() -> PathBuf {
PathBuf::from(env!("AEROPKG_HOME")).join("etc")
}