| 311 | } |
| 312 | |
| 313 | Result HttpConnection::sendTextCopy(int code, StringSpan body) |
| 314 | { |
| 315 | return sendBodyCopy(code, body, "text/plain; charset=utf-8"); |
| 316 | } |
| 317 | |
| 318 | Result HttpConnection::sendJsonCopy(int code, StringSpan body) { return sendBodyCopy(code, body, "application/json"); } |
| 319 |
no outgoing calls
no test coverage detected