(base: &str, path: &str)
| 3672 | } |
| 3673 | |
| 3674 | fn server_url(base: &str, path: &str) -> String { |
| 3675 | format!( |
| 3676 | "{}/{}", |
| 3677 | base.trim_end_matches('/'), |
| 3678 | path.trim_start_matches('/') |
| 3679 | ) |
| 3680 | } |
| 3681 | |
| 3682 | async fn parse_http_json<T: for<'de> Deserialize<'de>>( |
| 3683 | response: reqwest::Response, |
no outgoing calls
no test coverage detected