Skip to main content

hunt_correlate/
lib.rs

1#![cfg_attr(test, allow(clippy::expect_used, clippy::unwrap_used))]
2
3//! Hunt Correlate — correlation rules, watch mode, and IOC matching for clawdstrike hunt.
4
5pub mod engine;
6pub mod error;
7pub mod ioc;
8pub mod report;
9pub mod rules;
10pub mod watch;