agm_core/memory/mod.rs
1//! Memory model utilities (spec S28).
2//!
3//! This module provides validation functions for memory entries, keys, and
4//! topics. It does NOT implement storage -- that is Phase 2.
5//!
6//! The validator module (`validator::memory`) handles node-level validation
7//! during file validation. This module provides the underlying validation
8//! functions that can be reused by the validator, CLI tools, and the
9//! Phase 2 runtime.
10
11pub mod schema;