Files
khadhroony-bobobot/kb_lib/src/detect.rs
2026-04-25 06:29:48 +02:00

17 lines
603 B
Rust

// file: kb_lib/src/detect.rs
//! Detection pipeline facade.
//!
//! This module sits between transport/connectors and persistence.
//! It centralizes how technical observations, analysis signals and
//! candidate tokens are persisted before richer detection logic is added.
mod service;
mod types;
pub use crate::detect::service::KbDetectionPersistenceService;
pub use crate::detect::types::KbDetectionObservationInput;
pub use crate::detect::types::KbDetectionSignalInput;
pub use crate::detect::types::KbDetectionTokenCandidateInput;
pub use crate::detect::types::KbDetectionTokenCandidateResult;