1 2 3 4 5 6 7 8 9
use crate::common::*; use crate::AppDataType::*; use std::path::PathBuf; pub const USE_AUTHOR: bool = false; pub fn get_app_dir(_t: AppDataType) -> Result<PathBuf, AppDirsError> { Err(AppDirsError::NotSupported) }