//! No-op NER provider. Used when `[ner]\nprovider = "none"` is configured.
use crate;
/// A [`NerProvider`] that never emits any entities.
///
/// Useful when the caller wants to suppress all entity extraction
/// (e.g. for code files, config files, or structured data where the
/// capitalized-phrase heuristic would produce noise).
;