Skip to main content

zeph_tools/
patterns.rs

1// SPDX-FileCopyrightText: 2026 Andrei G <bug-ops>
2// SPDX-License-Identifier: MIT OR Apache-2.0
3
4//! Re-export of injection-detection patterns from `zeph-common` for backwards compatibility.
5//!
6//! The canonical definitions have moved to `zeph_common::patterns`. Callers that already
7//! import from `zeph_tools::patterns` continue to work without changes.
8
9pub use zeph_common::patterns::{
10    RAW_INJECTION_PATTERNS, RAW_RESPONSE_PATTERNS, strip_format_chars,
11};