Returns `true` if a hook command string is an Atomic hook.
(command: &str)
| 806 | |
| 807 | /// Returns `true` if a hook command string is an Atomic hook. |
| 808 | fn is_atomic_hook(command: &str) -> bool { |
| 809 | command.contains(ATOMIC_HOOK_PREFIX) |
| 810 | } |
| 811 | |
| 812 | /// Check if any matcher in a hook list contains an Atomic hook. |
| 813 | fn has_any_atomic_hook(matchers: &[GeminiHookMatcher]) -> bool { |
no test coverage detected