pub mod alpn; pub mod bandwidth; pub mod config; // The friends stack (persistent identity + control plane) is GUI-only — a // headless CLI host runs no presence service — so it's gated with the feature // that pulls the rest of the GUI, keeping the headless build lean. #[cfg(feature = "gui")] pub mod control; pub mod deps; pub mod display; pub mod endpoint; #[cfg(feature = "gui")] pub mod friends; #[cfg(feature = "gui")] pub mod identity; pub mod output; pub mod process; pub mod signal; pub mod tunnel;