(label: &str)
| 245 | } |
| 246 | |
| 247 | fn plist_path_for_label(label: &str) -> anyhow::Result<PathBuf> { |
| 248 | Ok(home_dir()? |
| 249 | .join("Library/LaunchAgents") |
| 250 | .join(format!("{label}.plist"))) |
| 251 | } |
| 252 | |
| 253 | fn service_labels() -> Vec<&'static str> { |
| 254 | vec![SERVICE_LABEL] |
no test coverage detected