grouped runtime reads and waits

selector modes
This commit is contained in:
Harivansh Rathi 2026-03-25 20:57:13 -04:00
parent cc8f8e548a
commit f87ac61790
11 changed files with 1285 additions and 67 deletions

View file

@ -218,3 +218,7 @@ pub fn successful_json_response(output: Output) -> Result<serde_json::Value> {
serde_json::from_slice(&output.stdout).context("Failed to parse JSON output from deskctl")
}
pub fn json_response(output: &Output) -> Result<serde_json::Value> {
serde_json::from_slice(&output.stdout).context("Failed to parse JSON output from deskctl")
}