romm-cli 0.37.0

Rust-based CLI and TUI for the ROMM API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Interactive settings screen for editing current config.

mod console;
mod render;
mod state;
mod types;

#[cfg(test)]
mod tests;

pub use types::{
    ConsolePathKind, SettingsConfirm, SettingsPickerKind, SettingsRow, SettingsScreen, SettingsTab,
};