Skip to main content

nexus_memory_core/
lib.rs

1//! Nexus Core - Core types, traits, and business logic
2//!
3//! This crate provides the foundational types and traits used throughout
4//! the Nexus Memory System.
5
6pub mod config;
7pub mod error;
8pub mod traits;
9pub mod types;
10
11pub use config::Config;
12pub use error::{NexusError, Result};
13pub use traits::*;
14pub use types::*;
15
16/// Nexus Memory System version
17pub const VERSION: &str = env!("CARGO_PKG_VERSION");