romm-cli 0.40.0

Rust-based CLI and TUI for the ROMM API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Library browse screen: consoles/collections and ROM list.

mod cache;
mod navigation;
mod render;
mod types;

#[cfg(test)]
mod tests;

pub use types::{
    LibraryBrowseScreen, LibrarySubsection, LibraryViewMode, UploadPrompt,
    LEFT_PANEL_PERCENT_DEFAULT, LEFT_PANEL_PERCENT_MAX, LEFT_PANEL_PERCENT_MIN,
};