Skip to main content

qualia_core_db/net/acoustic_ble_mesh/
mod.rs

1//! Zero-Infrastructure Acoustic & BLE Mesh Implementation
2//!
3//! This module provides zero-infrastructure acoustic and BLE mesh networking for distributed
4//! scientific computing in crisis scenarios. Designed for delay-tolerant networking and
5//! emergency response operations.
6
7use crate::q_hash;
8use serde::{Deserialize, Serialize};
9use std::collections::HashMap;
10use std::thread;
11use std::time::{Duration, Instant};
12
13mod acoustic;
14mod ble;
15mod data_store;
16mod manager;
17mod metrics;
18mod routing;
19mod types;
20
21pub use acoustic::*;
22pub use ble::*;
23pub use data_store::*;
24pub use manager::*;
25pub use metrics::*;
26pub use routing::*;
27pub use types::*;
28
29#[cfg(test)]
30mod tests;