//! Phase 2g 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 2g-specific annotation kind validation can land here
//! without affecting the shared parser.
//!
//! Phase 2g uses two kinds (per decisions doc D2):
//! - `jwt-safe[<reason>]` — collapses to Benign / Info.
//! - `jwt-vulnerable[<source>]` — collapses to RealBug / the existing
//! single-branch severity (typically `Critical` or `High` depending
//! on which `JwtVulnerability` legacy classification fires).
//!
//! The shared parser is kind-agnostic; this module is the natural
//! home for any future Phase 2g-specific kind validation or
//! normalization.
pub use crate;