teamctl_ui/lib.rs
1//! Library half of the `teamctl-ui` crate. Holds the app loop and the
2//! widget rendering primitives so integration tests can drive them
3//! against a `ratatui::buffer::Buffer` without spinning up a real
4//! terminal. The thin `main.rs` binary owns terminal lifecycle only.
5
6pub mod app;
7pub mod approvals;
8pub mod compose;
9pub mod data;
10pub mod help;
11pub mod layouts;
12pub mod mailbox;
13pub mod onboarding;
14pub mod pane;
15pub mod splash;
16pub mod statusline;
17pub mod theme;
18pub mod triptych;
19pub mod tutorial;
20pub mod watch;