//! SONA Learning Loops
//!
//! Three-tier temporal learning architecture:
//! - Loop A (Instant): Per-request trajectory recording and micro-LoRA updates
//! - Loop B (Background): Hourly pattern extraction and base LoRA updates
//! - Loop C (Deep): Weekly dream consolidation and full EWC++ update
pub use BackgroundLoop;
pub use LoopCoordinator;
pub use InstantLoop;