1 2 3 4 5 6 7 8 9 10 11 12 13
use clap::Args; use holodeck_tui::HolodeckApp; /// Launch the interactive simulator TUI. #[derive(Args, Debug)] pub struct TuiArgs {} impl TuiArgs { pub async fn run(&self) -> anyhow::Result<()> { HolodeckApp::live().run().await?; Ok(()) } }