putzen-cli 3.3.0

helps keeping your disk clean of build and dependency artifacts safely
Documentation
//! `putzen caches` interactive cache cleanup TUI.

pub mod command;
pub mod effect;
pub mod filter;
pub mod keys;
pub mod msg;
pub mod runtime;
pub mod state;
pub mod update;
pub mod view;
pub mod widgets;

pub use command::Command;
pub use effect::Effect;
pub use filter::Filter;
pub use msg::Msg;
pub use runtime::{enter_tui, leave_tui, run_loop, Term};
pub use state::{Loading, Modal, Overlay, RunOutcome, State, SPINNER_FRAMES};
pub use update::update;