bee_tui/lib.rs
1//! bee-tui — internal library exposing the modules the binary
2//! composes. Living as both a `[lib]` and a `[[bin]]` lets integration
3//! tests in `tests/` exercise the cockpit's components against
4//! fixtures, without launching the full TUI loop.
5//!
6//! Public exports are stable for tests only — there is no ABI
7//! commitment for downstream library users. Use the `bee-tui`
8//! command-line binary, not this lib.
9
10pub mod action;
11pub mod api;
12pub mod app;
13pub mod bee_log;
14pub mod bee_log_tailer;
15pub mod bee_log_writer;
16pub mod bee_supervisor;
17pub mod cli;
18pub mod components;
19pub mod config;
20pub mod errors;
21pub mod log_capture;
22pub mod logging;
23pub mod metrics;
24pub mod metrics_server;
25pub mod stamp_preview;
26pub mod state;
27pub mod theme;
28pub mod tui;
29pub mod watch;