attack/lib.rs
1//! attack-rs: MITRE ATT&CK Framework semantic layer
2//!
3//! Provides strongly-typed, graph-based interface to the MITRE ATT&CK dataset.
4//! Built on top of stix-rs for parsing ATT&CK STIX bundles.
5
6pub mod domain;
7pub mod error;
8pub mod store;
9pub mod validation;
10
11pub use domain::*;
12pub use error::*;
13pub use store::*;
14pub use validation::*;