Skip to main content

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 keysender;
12pub mod layouts;
13pub mod mailbox;
14pub mod onboarding;
15pub mod pane;
16pub mod pane_resize;
17pub mod splash;
18pub mod status_bar;
19pub mod statusline;
20pub mod theme;
21pub mod triptych;
22pub mod tutorial;
23pub mod watch;