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