bee-tui 1.0.0

Production-grade k9s-style terminal cockpit for Ethereum Swarm Bee node operators.
Documentation
//! bee-tui — internal library exposing the modules the binary
//! composes. Living as both a `[lib]` and a `[[bin]]` lets integration
//! tests in `tests/` exercise the cockpit's components against
//! fixtures, without launching the full TUI loop.
//!
//! Public exports are stable for tests only — there is no ABI
//! commitment for downstream library users. Use the `bee-tui`
//! command-line binary, not this lib.

pub mod action;
pub mod api;
pub mod app;
pub mod cli;
pub mod components;
pub mod config;
pub mod errors;
pub mod log_capture;
pub mod logging;
pub mod theme;
pub mod tui;
pub mod watch;