1use crate::prelude::*; 2 3pub mod simctl; 4 5#[derive(Debug)] 6pub struct XcRunInstance { 7 exec_path: Utf8PathBuf, 8} 9 10impl_exec_instance!(XcRunInstance, "xcrun");