1 2 3 4 5 6 7 8 9 10 11 12
//! Shared domain model: SIDs, GUIDs, collected AD objects, findings, risk config. //! Everything above this crate (checks, graph, report) speaks in these types. pub mod finding; pub mod object; pub mod sid; pub mod snapshot; pub use finding::{AttackResult, Category, Finding, Mitre, Severity}; pub use object::AdObject; pub use sid::{Guid, Sid}; pub use snapshot::Snapshot;