Skip to main content

elara_msp/
lib.rs

1//! ELARA Minimal Survival Profile - Text + Voice baseline
2//!
3//! MSP is the first living organism of ELARA:
4//! - profile:textual - chat, presence, typing
5//! - profile:voice-minimal - parametric voice state
6
7pub mod text;
8pub mod voice;
9
10pub use text::*;
11pub use voice::*;