scanbridge 0.3.0

A unified, pluggable API for malware scanning with circuit breakers, policy enforcement, and audit logging
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Policy engine for determining actions based on scan results.
//!
//! The policy engine evaluates scan results against configurable rules
//! to determine what action should be taken (allow, block, quarantine, etc.).

mod action;
mod engine;
mod rules;

pub use action::PolicyAction;
pub use engine::{PolicyDecision, PolicyEngine};
pub use rules::{Condition, PolicyRule};