donglora_bridge/lib.rs
1//! Peer-to-peer `LoRa` bridge connecting `DongLoRa` USB dongles across the internet.
2//!
3//! Uses iroh-gossip for swarm-based packet broadcast and mainline DHT for
4//! zero-configuration peer discovery. Nodes sharing a passphrase automatically
5//! discover each other and relay radio packets through a gossip swarm.
6
7pub mod config;
8pub mod gossip;
9pub mod packet;
10pub mod radio;
11pub mod rate_limit;
12pub mod router;
13pub mod setup;
14
15// TUI is public only so its types are visible to the binary; not intended for
16// external consumption.
17#[doc(hidden)]
18pub mod tui;