(&self, op: &str)
| 220 | } |
| 221 | |
| 222 | fn endpoint(&self, op: &str) -> String { |
| 223 | format!("{}/v1/repos/{}/git/{}", self.base_url, self.repo_id, op) |
| 224 | } |
| 225 | |
| 226 | async fn post_json<Req, Resp>(&self, op: &'static str, body: &Req) -> Result<Resp> |
| 227 | where |
no outgoing calls
no test coverage detected