leviath-cli 0.3.8

Command-line interface for Leviath agent framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Shared ratatui widgets for every Leviath TUI surface.
//!
//! Each widget here exists because at least two surfaces were carrying their
//! own copy (popups, help overlays, confirm dialogs, footers, list cursors,
//! line editors) and the copies had already drifted apart. One implementation,
//! one behavior.

pub(crate) mod confirm;
pub(crate) mod footer;
pub(crate) mod help;
pub(crate) mod line_edit;
pub(crate) mod popup;
pub(crate) mod scroll;