//! Phase 2h annotations entry point — kebab-cased to per-detector intent.
//!
//! The actual parser lives in `super::super::dual_branch_annotation`
//! (consolidated in Phase 2c, after the rule-of-three). This module
//! exists so existing `super::annotation::parse_python_comment` call
//! sites inside the detector keep working without churn, AND so that
//! any Phase 2h-specific annotation kind validation can land here
//! without affecting the shared parser.
//!
//! Phase 2h uses two kinds (per decisions doc D2):
//! - `deserialize-safe[<reason>]` — collapses to Benign / Info.
//! - `deserialize-vulnerable[<source>]` — collapses to RealBug /
//! the existing single-branch severity (typically `Critical` or
//! `High` depending on which `categorize_deserialize` legacy
//! classification fires).
//!
//! The shared parser is kind-agnostic; this module is the natural
//! home for any future Phase 2h-specific kind validation or
//! normalization.
pub use crate;