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 cli;
14pub mod components;
15pub mod config;
16pub mod errors;
17pub mod log_capture;
18pub mod logging;
19pub mod theme;
20pub mod tui;
21pub mod watch;