use std::path::PathBuf;
// #[derive(Debug)]
// enum VFxPRConfigType {
//     Local,
//     Sourced,
// }
// #[derive(Debug)]
// pub struct VFxPRConfigFile {
//     config_path: Option<PathBuf>,
//     config_type: VFxPRConfigType,
// }
fn get_default_config() -> Option<std::path::PathBuf> {
    let c_path = dirs::config_dir()?;
    let mut file_path = std::path::PathBuf::new();
    file_path.push(c_path);
    file_path.push(constants::VFxPR_NAME);
    file_path.push(constants::VFxPR_CONFIG_FILE_NAME);
    println!("Seeking file at: {:?}", file_path);
    if file_path.is_file() {
        println!("found config file at {:?}", file_path);
        return Some(file_path);
    }
    None
}