1use std::path::PathBuf; 2 3pub fn home_dir() -> PathBuf { 4 std::env::home_dir().expect("Failed to get home directory") 5}