//! Small terminal helpers shared by the raw-mode secret prompts in
//! `cli::ai::chat`, `cli::gmail::auth`, and `cli::drive::auth`.
usecrossterm::terminal::disable_raw_mode;/// Guard that disables raw mode on drop.
pubstructRawModeGuard;implDrop forRawModeGuard{fndrop(&mutself){let_=disable_raw_mode();}}