(data_root_path: &Path)
| 19 | } |
| 20 | |
| 21 | pub fn get_private_data_file_path(data_root_path: &Path) -> PathBuf { |
| 22 | get_private_data_directory_path(data_root_path).join(PRIVATE_DATA_FILE_NAME) |
| 23 | } |
| 24 | |
| 25 | fn get_public_data_directory_path(data_root_path: &Path) -> PathBuf { |
| 26 | data_root_path.join(PUBLIC_DATA_DIRECTORY_NAME) |
no test coverage detected