holodeck-simctl 0.8.0

A CLI and TUI companion for the iOS Simulator's simctl — boot, record, screenshot, and manage simulators
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(())
    }
}