Skip to main content

putzen_cli/caches/tui/
mod.rs

1//! `putzen caches` interactive cache cleanup TUI.
2
3pub mod command;
4pub mod effect;
5pub mod filter;
6pub mod keys;
7pub mod msg;
8pub mod runtime;
9pub mod state;
10pub mod update;
11pub mod view;
12pub mod widgets;
13
14pub use command::Command;
15pub use effect::Effect;
16pub use filter::Filter;
17pub use msg::Msg;
18pub use runtime::{enter_tui, leave_tui, run_loop, Term};
19pub use state::{Loading, Modal, Overlay, RunOutcome, State, SPINNER_FRAMES};
20pub use update::update;