//! # aaai-core
//!
//! Core engine for **aaai** (audit for asset integrity).
//!
//! # Module map
//!
//! ```text
//! aaai-core
//! ├── config — AuditDefinition and its YAML I/O
//! ├── diff — folder walker, DiffEntry, ignore patterns
//! ├── audit — match DiffEntries → AuditResult
//! ├── report — Markdown / JSON report generation
//! ├── history — append-only audit run log
//! ├── templates — built-in rule templates
//! └── profile — named before/after/definition presets
//! ```
// SPDX-License-Identifier: Apache-2.0
pub use AuditEngine;
pub use ;
pub use ;
pub use DiffEngine;
pub use ;
pub use IgnoreRules;
pub use ReportGenerator;