taimux_cli/lib.rs
1//! The picker and the commands a person runs: the TUI, the row layout, restart,
2//! resurrect, and the ssh federation.
3//!
4//! The only crate here that links a terminal library. Nothing in `core` or
5//! `daemon` can see any of it.
6
7pub mod act;
8pub mod ansi;
9pub mod install;
10pub mod remote;
11pub mod restart;
12pub mod resurrect;
13pub mod rows;
14pub mod tui;