(project_path: &Path, event: DaemonHookEvent)
| 265 | |
| 266 | #[cfg(unix)] |
| 267 | pub async fn notify_hook_event(project_path: &Path, event: DaemonHookEvent) { |
| 268 | let _ = timeout( |
| 269 | HOOK_EVENT_NOTIFY_TIMEOUT, |
| 270 | notify_hook_event_inner(project_path, event), |
| 271 | ) |
| 272 | .await; |
| 273 | } |
| 274 | |
| 275 | #[cfg(unix)] |
| 276 | async fn notify_hook_event_inner(project_path: &Path, event: DaemonHookEvent) { |
no test coverage detected