(path: &Path)
| 5489 | } |
| 5490 | |
| 5491 | fn profile_extension_supported(path: &Path) -> bool { |
| 5492 | matches!( |
| 5493 | path.extension().and_then(|ext| ext.to_str()), |
| 5494 | Some("yaml" | "yml" | "json") |
| 5495 | ) |
| 5496 | } |
| 5497 | |
| 5498 | fn load_profile_import_item( |
| 5499 | path: &Path, |
no outgoing calls
no test coverage detected