romm-cli 0.22.0

Rust-based CLI and TUI for the ROMM API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Library root for `romm-cli`: HTTP client, CLI/TUI frontends, and shared core.

pub mod client;
pub mod commands;
pub mod config;
pub mod core;
pub mod endpoints;
pub mod frontend;
pub mod services;
#[cfg(feature = "tui")]
pub mod tui;
pub mod types;