(url: &str)
| 2452 | } |
| 2453 | |
| 2454 | fn open_browser(url: &str) -> anyhow::Result<()> { |
| 2455 | ProcessCommand::new("open") |
| 2456 | .arg(url) |
| 2457 | .status() |
| 2458 | .context("open SimDeck UI")?; |
| 2459 | Ok(()) |
| 2460 | } |
| 2461 | |
| 2462 | enum NoCommandAction { |
| 2463 | Service(DefaultServiceLaunchOptions), |
no outgoing calls
no test coverage detected