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