(server_url: &str, path: &str)
| 5731 | } |
| 5732 | |
| 5733 | fn http_get_json(server_url: &str, path: &str) -> anyhow::Result<Value> { |
| 5734 | http_request_json(server_url, "GET", path, None) |
| 5735 | } |
| 5736 | |
| 5737 | include!("main/service_client.rs"); |
| 5738 |
no test coverage detected