Skip to main content

ai_usagebar/widget/
mod.rs

1//! Widget binary support: CLI parsing, per-vendor rendering, the always-exit-0
2//! wrapper, and the local-testing renderers (`--pretty`, `--watch`, `--json`).
3//!
4//! The library exposes building blocks here; the actual `main` lives in
5//! `src/bin/ai-usagebar.rs`, which is a thin orchestration layer.
6
7pub mod cli;
8pub mod pretty;
9pub mod render;
10pub mod run;