(&self, method: reqwest::Method, path: &str)
| 17 | |
| 18 | impl BotServiceClient for Client { |
| 19 | fn request<BodyT>(&self, method: reqwest::Method, path: &str) -> reqwest::RequestBuilder { |
| 20 | self.http |
| 21 | .request(method, format!("{}/{}", self.base_url, path)) |
| 22 | } |
| 23 | } |
no outgoing calls
no test coverage detected