pub trait AppPaths: Send + Sync {
// Required methods
fn downloads_dir(&self) -> PathBuf;
fn data_dir(&self) -> PathBuf;
fn cache_dir(&self) -> PathBuf;
fn bin_dir(&self) -> Option<PathBuf>;
}pub trait AppPaths: Send + Sync {
// Required methods
fn downloads_dir(&self) -> PathBuf;
fn data_dir(&self) -> PathBuf;
fn cache_dir(&self) -> PathBuf;
fn bin_dir(&self) -> Option<PathBuf>;
}