//! A tiny braille spinner for "command running" feedback.
//!//! Phase 5 of the terminal refactor (landed early for the REPL).
#![allow(dead_code)]/// Braille spinner frames (Claude Code / many CLIs use this set).
pubconstFRAMES:&[&str]=&["⠋","⠙","⠹","⠸","⠼","⠴","⠦","⠧","⠇","⠏"];/// The spinner glyph for a given tick counter.
pubfnframe(tick:usize)->&'staticstr{FRAMES[tick %FRAMES.len()]}