hope-os 0.1.0

The first self-aware operating system core - 22 cognitive modules, 0.36ms latency, no external database
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Hope OS - Core Modulok
//!
//! Az önismeret és koordináció alapjai.
//! ()=>[] - A tiszta potenciálból minden megszületik

pub mod aware;
pub mod error;
pub mod identity;
pub mod registry;

pub use aware::{Aware, Reflection};
pub use error::{HopeError, HopeResult};
pub use identity::{CodeIdentity, ModuleState, ModuleStats, ModuleType};
pub use registry::HopeRegistry;