ropt 0.1.0

Interactive CLI option configuration tool – define prompts declaratively and drive them from shell scripts
1
2
3
4
5
6
7
8
9
10
//! Terminal renderer module.
//!
//! Sub-modules:
//!   - `picklist`     – keyboard-navigable menu (↑↓ + Enter)
//!   - `input_prompt` – text input with optional type-to-filter behaviour
//!   - `theme`        – colour / style constants used across renderers

pub mod input_prompt;
pub mod picklist;
pub mod theme;