// SPDX-License-Identifier: GPL-3.0-or-later
//! CLI-specific functionality: output formatting and progress indicators.
//!
//! **This module is only available when the `cli` feature is enabled.**
//!
//! These components are separate from the core library functionality to allow
//! non-CLI consumers (like topgrade) to use the library without pulling in
//! terminal UI dependencies.
pub
pub
pub
pub const CLEAR_LINE_SEQUENCE: &str = "\x1b[1A\r\x1b[2K";