Skip to main content

romm_cli/frontend/
mod.rs

1//! Frontend routing helpers.
2//!
3//! This module keeps runtime selection between presentation layers
4//! (CLI and TUI) separate from core business logic.
5
6pub mod cli;
7#[cfg(feature = "tui")]
8pub mod tui;