use anyhow::Result; use std::path::PathBuf; pub fn get_config_path() -> Result { let config_path = dirs::config_dir().expect("Failed to obtain config dir"); Ok(config_path.join("pwsp")) }