File size: 460 Bytes
bdb278a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
//! # Adapters
//!
//! Swappable implementations of port traits.
//!
//! This is where the hexagonal architecture meets reality:
//! - Storage adapters: Memory, NVMe
//! - Index adapters: Flat (brute force)
//!
//! Each adapter implements one or more port traits.
//! Adapters can be swapped without changing core logic.
//!
//! For advanced index adapters like HAT (Hierarchical Attention Tree),
//! see the `arms-hat` crate.
pub mod storage;
pub mod index;
|