(server_url: &str, path: &str, body: &Value)
| 7 | } |
| 8 | |
| 9 | fn service_post_bytes(server_url: &str, path: &str, body: &Value) -> anyhow::Result<Vec<u8>> { |
| 10 | http_request(server_url, "POST", path, Some(body)) |
| 11 | } |
| 12 | |
| 13 | fn service_open_url(server_url: &str, udid: &str, url: &str) -> anyhow::Result<()> { |
| 14 | service_action_ok( |