(command: &str)
| 190 | } |
| 191 | |
| 192 | pub(crate) fn is_atomic_hook(command: &str) -> bool { |
| 193 | command.contains(ATOMIC_HOOK_PREFIX) |
| 194 | } |
| 195 | |
| 196 | pub(crate) fn remove_atomic_hooks(matchers: &mut Vec<ClaudeHookMatcher>) { |
| 197 | for matcher in matchers.iter_mut() { |
no test coverage detected