(&self)
| 168 | pub fn get(url: impl Into<String>) -> Self { |
| 169 | Self::new(HttpMethod::Get, url, HttpBody::Empty) |
| 170 | } |
| 171 | |
| 172 | pub fn post_variant(url: impl Into<String>, body: Variant) -> Self { |
| 173 | Self::new(HttpMethod::Post, url, HttpBody::Variant(body)) |
| 174 | } |
| 175 |
no outgoing calls
no test coverage detected